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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SA_PASSWORD should be MSSQL_SA_PASSWORD
MSSQL_SA_PASSWORD
DBSTATUS=$(/opt/mssql-tools/bin/sqlcmd -h -1 -t 1 -U sa -P $SA_PASSWORD -Q "SET NOCOUNT ON; Select SUM(state) from sys.databases")
The text was updated successfully, but these errors were encountered:
For others who run into this issue, the error that you see is:
Sqlcmd: 'SET NOCOUNT ON; Select SUM(state) from sys.databases': Unknown Option. Enter '-?' for help.
The solution, is simply to replace SA_PASSWORD in the .sh file with MSSQL_SA_PASSWORD.
SA_PASSWORD
Sorry, something went wrong.
No branches or pull requests
SA_PASSWORD should be
MSSQL_SA_PASSWORD
The text was updated successfully, but these errors were encountered: