Viewing 3 posts - 1 through 3 (of 3 total)
Choose 3, but actually 4 answers...
Or I'm too tired...
March 29, 2013 at 1:07 pm
#1602131
rudy komacsar (3/16/2009)and yet again to prove why it does work:CREATE PROC [;] AS BEGINEXEC ('ALTER PROC [;] AS SELECT NULL')EXEC [;]DROP PROC [;]ENDGOEXEC [;]
rudy komacsar (3/16/2009)
CREATE PROC [;] AS BEGIN
EXEC ('ALTER PROC [;] AS SELECT NULL')
EXEC [;]
DROP PROC [;]
END
GO
Yes, but you...
March 16, 2009 at 9:14 am
#960321
The only odd thing is the use of the word GO to name the procedure...
However, GO is not listed as a reserved word in SQL, so why not?
The first batch...
March 15, 2009 at 4:26 am
#959883