SQL Reset Password option not shown

Tommy Persad 25 Reputation points
2024-02-01T16:19:57.9733333+00:00

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.

Azure SQL Database
Azure
Azure
A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.
1,409 questions
0 comments No comments
{count} votes

Accepted answer
  1. Alberto Morillo 34,671 Reputation points MVP Volunteer Moderator
    2024-02-01T17:50:49.07+00:00

    On the Azure Portal, if you are located on an Azure SQL Database, make a click on the Azure Logical Server. User's image

    Then you will see the option to reset the password. User's image

    2 people found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. RahulRandive 10,486 Reputation points Volunteer Moderator
    2024-02-01T18:19:59.78+00:00

    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!

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.