Using "GO" within a transaction
I'm building a web app that attempts to install/upgrade the database on App_Start. Part of the installation procedure is to ensure that the database has the asp.net features installed. For this I am using the System.Web.Management.SqlServices object.
My intention is to do all the database work within an SQL transaction and if any of it fails, roll back the transaction and leave the database untouched.
the SqlServices object has a method "Install" that takes a ConnectionString but not a transaction. So instead I use SqlServices.GenerateApplicationServicesScripts like so:
string script = SqlServices.GenerateApplicationServicesScripts(true, SqlFeatures.All, _connection.Database);
SqlHelper.ExecuteNonQuery(transaction, CommandType.Text, script, ...);
and then I use the SqlHelper from the Enterprise Library.
but this throws an Exception with a butt-load of errors, a few are below
Incorrect syntax near 'GO'.
Incorrect syntax near 'GO'.
Incorrect syntax near 'GO'.
Incorrect syntax near 'GO'.
Incorrect syntax near the keyword 'USE'.
Incorrect syntax near the keyword 'CREATE'.
Incorrect syntax near 'GO'.
The variable name '@cmd' has already been declared. Variable names must be unique within a query batch or stored procedure.
I'm presuming it's some issue with using the GO statement within an SQL Transaction.
How can I get this generated script to work when executed in this way.
Solution 1:
GO is not a SQL keyword.
It's a batch separator used by client tools (like SSMS) to break the entire script up into batches
You'll have to break up the script into batches yourself or use something like sqlcmd with "-c GO" or osql to deal with "GO"
Solution 2:
I just want to add that if you name your transaction, you can include multiple GO sections within in and they will all roll back as a unit. Such as:
BEGIN TRANSACTION TransactionWithGos;
GO
SET XACT_ABORT ON; -- Roll back everything if error occurs in script
GO
-- do stuff
GO
COMMIT TRANSACTION TransactionWithGos;
GO
Solution 3:
Poor man's way to fix this: split the SQL on the GO statements. Something like:
private static List<string> getCommands(string testDataSql)
{
string[] splitcommands = File.ReadAllText(testDataSql).Split(new string[]{"GO\r\n"}, StringSplitOptions.RemoveEmptyEntries);
List<string> commandList = new List<string>(splitcommands);
return commandList;
}
[that was actually copied out of the app I am working on now. I garun-freaking-tee this code]
Then just ExecuteNonQuery()
over the list. Get fancy and use transactions for bonus points.
# # # # # BONUS POINTS # # # # # #
How to handle the transaction bits really depends on operational goals. Basically you could do it two ways:
a) Wrap the entire execution in a single transaction, which would make sense if you really wanted everything to either execute or fail (better option IMHO)
b) Wrap each call to ExecuteNonQuery()
in its own transaction. Well, actually, each call is its own transaction. But you could catch the exceptions and carry on to the next item. Of course, if this is typical generated DDL stuff, oftentimes the next part depends on a previous part so one part failing will probably bugger the whole pooch.
Solution 4:
EDIT as pointed out below I specified tran where batch was actually correct.
The issue is not that you cannot use GO within a transaction so much as GO indicates the end of a batch, and is not itself a T-SQL command. You could execute the whole script using SQLCMD, or split it on the GO's and execute each batch in turn.