I\'m creating a web application that serves as a front end to do SQL Replication.
I have many scripts stored in the properties of the program. Let\'s use the first o
The GO command is not an SQL command, it's a command in SQL Management Studio. It separates batches in a script.
To run the script as SQL, split it on "GO" and execute each string by itself.
(You might want to use a regular expression like \bGO\b or \sGO\s to do the split, so that you catch only occurances that is not part of a word, if you would happen to have an identifier that contains "go".)