Comments
1 comment
-
This would be considered a formatting feature request.
You can direct feature requests to our uservoice forums.
http://redgate.uservoice.com/forums/944 ... uggestions
These forums are actively monitored by our development team and allow our users to request features and vote on them.
If a feature receives a significant amount of votes or is deemed to have merit development may include the feature in a future release.
Add comment
Please sign in to leave a comment.
An arbitrary example. You'll need to view in fixed width font (ssms) to see alignment.
-- sys.indexes alligned propertly under * SELECT * FROM sys.indexes -- qty2, * and sys.indexes improperly alligned SELECT qty = COUNT(*) OVER () ,qty2 = SUM(CAST(is_unique AS INT)) OVER () ,* FROM sys.indexes -- Using comments to help formatting, but there's still a stair step affect SELECT qty = COUNT(*) OVER -- () ,qty2 = SUM(CAST(is_unique AS INT)) OVER -- () ,* FROM sys.indexes -- More comments to provide more accurate formatting SELECT qty = COUNT(*) OVER -- /* */ () ,qty2 = SUM(CAST(is_unique AS INT)) OVER -- /* */ () ,* FROM sys.indexesCurrently using SqlPrompt 6.0.0.71 EAP, but same issue in v5.x