 |
SoftTree Technologies
Technical Support Forums
|
|
Author |
Message |
jlangland
Joined: 27 Apr 2016 Posts: 16 Country: United States |
|
v11 Beta SQL Formatting is breaking up SQL Server variables |
|
Hi,
The SQL Formatting in v11 Beta for SSMS 17.9 is breaking up "server variables"
E.g
CREATE PROCEDURE [dbo].[sp_LogMessage]
@Application VARCHAR(255),
@Feed VARCHAR(200) = NULL,
@ModuleName VARCHAR(255),
@MessageType VARCHAR(20),
@Message VARCHAR(2048),
@Severity INT,
@StackTrace VARCHAR(MAX) = NULL,
@ServerName VARCHAR(50) = @@ServerName,
@DatabaseName VARCHAR(255) = NULL,
@Duration FLOAT = NULL,
@ItemCount INT = NULL
does this
CREATE PROCEDURE [dbo].[sp_LogMessage]
@Application VARCHAR(255),
@Feed VARCHAR(200) = NULL,
@ModuleName VARCHAR(255),
@MessageType VARCHAR(20),
@Message VARCHAR(2048),
@Severity INT,
@StackTrace VARCHAR(MAX) = NULL,
@ServerName VARCHAR(50) =
@
@ServerName,
@DatabaseName VARCHAR(255) = NULL,
@Duration FLOAT = NULL,
@ItemCount INT = NULL
|
|
Tue Jul 23, 2019 1:11 pm |
|
 |
SysOp
Site Admin
Joined: 26 Nov 2006 Posts: 7948
|
|
|
|
Thank you very much for reporting this issue.
|
|
Tue Jul 23, 2019 1:25 pm |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|