Why is SSMS altering my stored procedures (re-formatting, changing exec to EXECUTE, etc.)
问题 SSMS is suddenly re-formatting my stored procedure - it has never done this before. Here's an example of what I'm talking about. Here's the start of the stored procedure I created last week: CREATE PROCEDURE [dbo].[usp_LoanDataNames] ( @LoanID varchar(max) = null, @Columns varchar(max) = null, @DataNames NVARCHAR(MAX) = '', @SQL NVARCHAR(MAX) = '' ) AS All the stored procedures I created before today still have that format. But when I create a new stored procedure today, with the same exact