I create a stored procedure like this in ssms:
USE [UnitTest] GO /****** Object: StoredProcedure [dbo].[ProcedureName] Script Date: 2017-09-18 15:30:44 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[ProcedureName] @p1 INT=0, @p2 INT=0 AS BEGIN SET NOCOUNT ON; SELECT @p1, @p2; END GO but when I save the stored procedure and reopen it, automatically ssms changes the format like this:
USE [UnitTest] GO /****** Object: StoredProcedure [dbo].[ProcedureName] Script Date: 2017-09-18 15:29:28 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROCEDURE [dbo].[ProcedureName] @p1 INT=0, @p2 INT=0 AS BEGIN SET NOCOUNT ON; SELECT @p1, @p2; END GO how can I disable this feature?