On the Azure Portal, if you are located on an Azure SQL Database, make a click on the Azure Logical Server.
Then you will see the option to reset the password.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm trying to reset the password for my SQL server admin but i go to azure, select SQL check the database but I do not see the option to reset the password.
On the Azure Portal, if you are located on an Azure SQL Database, make a click on the Azure Logical Server.
Then you will see the option to reset the password.
Hi @Tommy Persad
In case if you do not see the option to reset the password in the portal, you can also perform through PowerShell script
$ServerPassword = "newpassword"
$SecureString = ConvertTo-SecureString $ServerPassword -AsPlainText -Force
Set-AzSqlServer -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -SqlAdministratorPassword $secureString
This command resets the administrator password on the AzureSQL Server named server01.
https://learn.microsoft.com/en-us/powershell/module/az.sql/set-azsqlserver?view=azps-11.2.0#example-1-reset-the-administrator-password
Thank you!