We have around 1000 stored procedures with few having SET ANSI_NULLS ON
and some OFF
, depending on the scope.
Using VS2019 and importing all procedures into a new project, the ANSI setting is not captured.
How can I import all procedures with the setting?
Example procedure begin as :
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE .....