Hello everyone,
When I explicitely define an option...
SET QUOTED_IDENTIFIER OFF
GO
...in a procedure, it is "forgotten" by myDBR the next time I edit my procedure since this option is in fact located before the CREATE PROCEDURE statement.
Is there any workaround so that I don't have so rewrite this option every time I edit my procedure?
Or would it be possible to define an "SQL template" that would enable me to choose what the SQL editor displays by default when I create a procedure.
The editor currently displays this when I launch it :
CREATE PROCEDURE sp_DBR
AS
BEGINselect
from
whereEND
go
I would need it to display this instead:
SET QUOTED_IDENTIFIER OFF
GO
CREATE PROCEDURE sp_DBR
AS
BEGINselect
from
whereEND
go
Best regards.