Activity overview
Latest activity by willspurgeon
Did SP-1662 ever get implemented? (NOT indenting Begin/End)
Hi there, looking through the release notes I don't find whether SP-1662 was ever implemented.
I'd prefer SQL Prompt not to indent the begin/end blocks, and instead prefer:if {expression}...
Format SQL: Ability to turn off "begin" indent
I don't like to indent my "begins" in procs, while's, if's, etc and need to be able to turn this off.
Ex: I prefer
if @x < 1
begin
set @x=1
end
over
if @x < 1
begin
set @x=1
...