Created
September 21, 2017 21:02
-
-
Save atshane253/44e0c48e144cbc7315b5c9cc394f40cd to your computer and use it in GitHub Desktop.
SSMS Find and Replace Regexes for Script Table Template Parameters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MATCH | |
--- | |
UPDATE | |
[Column] = <Column, type,> | |
\[(.*?)\] = <.*?, (.*?),> | |
INSERT | |
<Column, type,> | |
<(.*?), (.*?),> | |
REPLACE | |
--- | |
DECLARE | |
@$1 $2 | |
CONSUME | |
@$1 | |
$1 = @$1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment