Skip to content

Instantly share code, notes, and snippets.

@alevyinroc
Created July 10, 2018 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alevyinroc/550066b0799d5f129688b0ca92059e63 to your computer and use it in GitHub Desktop.
Save alevyinroc/550066b0799d5f129688b0ca92059e63 to your computer and use it in GitHub Desktop.
DECLARE @Debug BIT= 1;
DECLARE @ImSure BIT= 1;
IF(@Debug = 1)
BEGIN
PRINT @MyQuery;
END;
IF(@ImSure = 1)
BEGIN
EXEC sp_executesql @MyQuery;
END;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment