Comment Alignment
torsten.strauss
Posts: 271 Silver 3
in SQL Prompt
Hi Red Gate Team,
comments are aligned in a way I did not expected.
Version 1.3179
Thanks for looking into this!
Torsten
comments are aligned in a way I did not expected.
Version 1.3179
SET NOCOUNT ON; SET XACT_ABORT ON; BEGIN BEGIN TRY BEGIN TRAN; WITH cte AS ( SELECT * FROM t1 UNION ALL SELECT * FROM t2 ) INSERT t3 ( col1 ) /* comment */ SELECT col1 FROM t4 UNION /* Server Clusters associated with Database Instances. */ SELECT col1 FROM t4; /* comment */ COMMIT TRAN; RETURN; END TRY BEGIN CATCH IF @@TRANCOUNT > 0 AND XACT_STATE() <> 0 BEGIN ROLLBACK TRAN; END; THROW; END CATCH; END; GO
Thanks for looking into this!
Torsten
Tagged:
Answers
Thank you for your forum post.
What exact full version number of SQL Prompt are you using? You can obtain this information from the SQL Prompt menu ->About SQL Prompt option.
I have added the details of this problem to existing bug report SP-6157.
Many Thanks
Eddie
Senior Product Support Engineer
Redgate Software Ltd
Email: support@red-gate.com
it was the version 9.0.1.317.
Thanks for looking into this!
Torsten