Comments
Sort by recent activity
squigley said:
Good Afternoon! Regex tends to be better at matching things versus not matching things. Given that, we believe that a negative lookahead would be the way to go. It would look something like which
will actually only match the first [ (which should cause the item to be included as there is a match) but it will only match that when that is NOT followed by dbo.].[Broadcast% (using the SQL wild card string to show what I mean rather than it actually being the percent sign) ^\[(?!dbo\]\.\[Broadcast.*)
[image] The second one is similar just having the .* before and after ist: ^\[(?!dbo\]\.\[.*ist.*)
[image]
Can you let me know if that helps you out? Thanks!
This is exactly what I was looking for! Thank you! / comments
squigley said:
Good Afternoon!Regex tends to be better at matching things versus not matching things. Given that, we believe that a negative lookahead would be the way to go.It would look som...
SQL Data Compare allowed us to trim down the backup time of one of our databases by only copying the different rows between them instead of migrating the whole database. / comments
SQL Data Compare allowed us to trim down the backup time of one of our databases by only copying the different rows between them instead of migrating the whole database.