vote up 0 vote down star

I am using Regex.Split to split a SQL script on the keyword "GO". My problem here is that I cannot seem to get my head around how to get the Regex to do the split. My regex expression also splits on "GO" even if it's in a SQL statement like:

Insert into  x(a,b) values(‘please go get some text’,’abc’)

But I only want it to split on the keyword "GO". Any suggestions?

EDIT: I am using c#. at the moment my regex is simply:

  foreach (string batch in Regex.Split(script, "\\bGO\\b", RegexOptions.IgnoreCase))
  {
    yield return batch;
  }
flag

Perhaps it would help if you make an example of what the matches should look like. – DR Mar 11 at 13:58
Knowing the programming language may be helpful as well. – EBGreen Mar 11 at 13:59
What does your regex look like? – coonj Mar 11 at 14:00
Okay guys I updated my question – Draco Mar 11 at 14:07
if your end game is to execute the queries individually. stackoverflow.com/questions/40814/… – jms Mar 11 at 14:11

4 Answers

vote up 3 vote down check

Split on GOs on a line by themselves, like:

foreach (string batch in Regex.Split(script, "^GO$\\n", RegexOptions.IgnoreCase | RegexOptions.Multiline))
{
    yield return batch;
}

Depending on where your script is coming from you may need to change that to "^GO$\\r\\n"

link|flag
That regex has got the anchors mixed up. Also, make sure you set multiline mode: "(?m)^GO$" – Alan Moore Mar 12 at 23:00
vote up 2 vote down

You could try something like

/;\s*GO\s*;/i

With that you'll be covering every GO sentence, independently if they are in just one line or not (i.e. semi-colons in other lines).

If you're using queries for further execution, the you might want to add the semi-colon back to each query.

Be warned that if an occurrence of "; GO;" happens inside an insert string, then there's no way to achieve your goal without a proper SQL parser.

link|flag
vote up 3 vote down

You could search for "go" on a line by itself. Not guaranteed to always work, but more likely to work.

link|flag
Nah, I tried this and it matches "go" in a normal statement as well – Draco Mar 11 at 14:05
1  
Draco, your regex is wrong then – James L Mar 11 at 14:09
vote up 4 vote down

This is pretty much impossible without implementing a complete SQL parser (which you probably do not want to do), in the really correct way.

An alternative would be to resort to some hacks (i.e. ignore sections of the text that are within quotes), but this will still not work if your SQL contains the text 'GO' at some other place, e.g. 'SELECT * FROM GO'.

link|flag
+1, regex does not have the power to parse SQL, period. You may need to rethink your requirements. Writing a full SQL parser is hugely non-trivial. – bobince Mar 11 at 15:23
@bobince: "hugely non-trivial"... oxymoron ? ;-) – Cerebrus Mar 13 at 5:36
Err... how would that be an oxymoron? trivial would be small, non-trivial is therefore large... if anything it's redundant. – Telos Mar 13 at 5:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.