Is there a command in Microsoft SQL Server T-SQL to tell the script to stop processing? I have a script that I want to keep for archival purposes, but I don't want anyone to run it.
|
An alternate solution could be to alter the flow of execution of your script by using the
Warning! The above sample was derived from an example I got from Merrill Aldrich. Before you implement the |
|||||
|
|
No, there isn't one - you have a couple of options:
EDIT: Demonstration that the 'return' statement is batch specific - note that you will continue to see result-sets after the returns:
|
|||
|
|
|
Why not simply add the following to the beginning of the script
|
|||||||||||
|
|
To work around the RETURN/GO issue you could put This will close the client connection as per RAISERROR on MSDN. The very big downside is you have to be sysadmin to use severity 20. Edit: A simple demonstration to counter Jersey Dude's comment...
|
|||||||||||
|
|
GBN is Correct:
will work. |
||||
|
|
|
Despite its very explicit and forceful description, RETURN did not work for me inside a stored procedure (to skip further execution). I had to modify the condition logic. Happens on both SQL 2008, 2008 R2:
had to be changed into:
Discovered as a result of finding duplicated rows. Debugging PRINTs confirmed that @idSess had value greater than zero in the IF check - RETURN did not break execution! |
|||
|
|
RAISERROR with severity 20 will report as error in Event Viewer. You can use SET PARSEONLY ON; (or NOEXEC). At the end of script use GO SET PARSEONLY OFF;
|
|||
|
|
|
Try running this as a TSQL Script
The return ends the execution.
|
|||||
|