We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Allow substitution of $(var_name) variable.
$(var_name)
This also requires handling:
-v
:setvar
-x
The following notes are taken from the MSDN page for the sqlcmd Utility:
Variable Precedence (Low to High) System-level environmental variables. User-level environmental variables Command shell (SET X=Y) set at command prompt before running sqlcmd. sqlcmd -v X=Y :Setvar X Y
NOTES:
:setvar VarName
The text was updated successfully, but these errors were encountered:
SqlQuantumLeap
No branches or pull requests
Allow substitution of
$(var_name)
variable.This also requires handling:
-v
command-line switch:setvar
SQLCMD command-x
ignore scripting variablesThe following notes are taken from the MSDN page for the sqlcmd Utility:
NOTES:
:setvar VarName
without a value clears the variable.The text was updated successfully, but these errors were encountered: