Let's say I have an SQL statement that's syntactically and semantically correct so it executes.
In Management Studio (or any other query tool) how can I test SQL statements, and if I notice that they broke something, rollback (in a separate query?)
|
Let's say I have an SQL statement that's syntactically and semantically correct so it executes. In Management Studio (or any other query tool) how can I test SQL statements, and if I notice that they broke something, rollback (in a separate query?) |
||||
|
|
|
The easisest thing to do is to wrap your code in a transaction, and then execute each batch of T-SQL code line by line. For example,
If you want to incorporate error handling you can do so by using a TRY...CATCH BLOCK. Should an error occur you can then rollback the tranasction within the catch block. For example:
See the following link for more details. http://msdn.microsoft.com/en-us/library/ms175976.aspx Hope this helps but please let me know if you need more details. Cheers,John |
|||
|
|