Improve Open SQL in SSMS/New Formatting
Would be great if instead of opening like so in SSMS:
Executed Sql Query:
Query: SELECT ... AND ( [LPA_L3].[SomeColumn] = @p1)
Parameter: @p1 : Guid. Length: 0. Precision: 0. Scale: 0. Direction: Input. Value: 52d87c12-e610-43f8-bdc1-7aee15b19a78
It commented out comments and set variable values
--Parameter: @p1 : Guid. Length: 0. Precision: 0. Scale: 0. Direction: Input. Value: 52d87c12-e610-43f8-bdc1-7aee15b19a78
SET @p1 = '52d87c12-e610-43f8-bdc1-7aee15b19a78';
--Executed Sql Query:
-- Query:
SELECT ... AND ( [LPA_L3].[SomeColumn] = @p1)
3
votes
Aaron Shumaker
shared this idea