You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to upgrade my SaaS Accelerator to a higher version, the db connection is authenticated with Active Directory Managed Identity, as below:
"connectionstrings": {
"defaultconnection": "Server=tcp:abcd-sql.database.windows.net;Database=abcdefg;Authentication=Active Directory Default;"
But below Invoke-Sqlcmd command in Upgrade.ps1 needs to be executed with -Username & -Password:
Invoke-Sqlcmd -query $compatibilityScript -ServerInstance $Server -database $Database -Username $User -Password $Pass
The error that I encountered is as below
How can I handle this?Please help.
The text was updated successfully, but these errors were encountered:
I want to upgrade my SaaS Accelerator to a higher version, the db connection is authenticated with Active Directory Managed Identity, as below:
"connectionstrings": {
"defaultconnection": "Server=tcp:abcd-sql.database.windows.net;Database=abcdefg;Authentication=Active Directory Default;"
But below Invoke-Sqlcmd command in Upgrade.ps1 needs to be executed with -Username & -Password:
Invoke-Sqlcmd -query $compatibilityScript -ServerInstance $Server -database $Database -Username $User -Password $Pass
The error that I encountered is as below
![Image](https://private-user-images.githubusercontent.com/195734910/411876033-02ebe8f7-1f19-4f51-96b0-b5702877d7db.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2MTYxOTgsIm5iZiI6MTczOTYxNTg5OCwicGF0aCI6Ii8xOTU3MzQ5MTAvNDExODc2MDMzLTAyZWJlOGY3LTFmMTktNGY1MS05NmIwLWI1NzAyODc3ZDdkYi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjE1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxNVQxMDM4MThaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0yZTJhMDY2MDVkZTVkODY1M2NjOWVlMWU2ZTVlNGQ1YTY5NmEzMTE4ZTIyNTgwYjk1NTQ3ODE0MWQ0ZmUzYjNmJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.ZhCYmSszPYTe1WA-_hz7lq7Ty8ZkGwGBFsHGSfOPMFU)
How can I handle this?Please help.
The text was updated successfully, but these errors were encountered: