Activity overview
Latest activity by mcair
CREATE PROCEDURE [dbo].[mysp]
as
select cola from tablea ta join tableb tb on ta.keycol = tb.keycol
will be laid out with the select statement tab-indented when I wanted it to start at pos 0. / comments
CREATE PROCEDURE [dbo].[mysp]
as
select cola from tablea ta join tableb tb on ta.keycol = tb.keycol
will be laid out with the select statement tab-indented when I wanted it to start at pos 0.
Thanx for the quick response, and please excuse my not discovering the features you mentioned.
One question: when I select "Lay Out SQL" it automatically indents everything after "AS" by one tab-stop?
BTW, the "Summarize Script" feature is awesome! / comments
Thanx for the quick response, and please excuse my not discovering the features you mentioned.
One question: when I select "Lay Out SQL" it automatically indents everything after "AS" by one tab-st...
Great start...here's what I need:
I've been looking for something like this for a long time, often wasting significant time "cleaning-up" some lazy, long-gone developer's sloppy T-SQL code so that it is somewhat readable and ready ...