In addition to formatting indentations, it would be great if I could apply the comma before and stacked list formats to an index as in the example below.
CREATE NONCLUSTERED COLUMNSTORE INDEX [NCCI_Name] ON [dbo].[some_table]
(
[id]
,[field1]
,[field2]
,[field3]
) WITH (DROP_EXISTING = OFF, COMPRESSION_DELAY = 0) ON [PRIMARY]
GO
In addition to formatting indentations, it would be great if I could apply the comma before and stacked list formats to an index as in the example below.
CREATE NONCLUSTERED COLUMNSTORE INDEX [NCCI_Name] ON [dbo].[some_table]
(
[id]
,[field1]
,[field2]
,[field3]
) WITH (DROP_EXISTING = OFF, COMPRESSION_DELAY = 0) ON [PRIMARY]
GO