A cross-platform database tool for data professionals using on-premises and cloud data platforms on Windows, macOS, and Linux.
Hi Varun_06,
It sounds like you're having trouble logging into Azure Data Studio due to a forgotten SQL Authentication password. No worries, here's what you can do:
Reset the Password via Azure Portal:
- If you're an administrator, you can reset the password for the SQL server directly through the Azure portal:
- Go to the [Azure portal](https://portal.azure.com/). - Navigate to your SQL server resource. - Look for the **Reset Password** option at the top menu bar. If it’s not immediately visible, you may need to click on the ellipsis (`...`) to find it. - Enter a new password and confirm it, and then save the changes.
- For Non-Administrator Users:
- If you need to reset a non-administrator user password, you can use a client application such as SQL Server Management Studio or Azure Data Studio. You would use the
ALTER LOGINstatement to change the password. https://learn.microsoft.com/en-us/sql/t-sql/statements/alter-login-transact-sql?view=azuresqldb-current&preserve-view=true
- If you need to reset a non-administrator user password, you can use a client application such as SQL Server Management Studio or Azure Data Studio. You would use the
Here’s a quick reference to the relevant documentation you'll need:
If you have more specific scenarios or settings, let me know! What type of SQL server account are you using? Are you the admin, or is it a non-admin user account? These details could help narrow down the best approach for resetting your password. Hope this helps!