How do I reset the admin user password on my two MS SQL databases

Duncan, Ross 5 Reputation points
2024-08-05T13:19:10.3333333+00:00

During company re-org the password to the admin user on my prep and prod MS SQL databases has been lost.

How do I get them reset please?

Azure SQL Database
{count} vote

2 answers

Sort by: Most helpful
  1. RahulRandive 10,486 Reputation points Volunteer Moderator
    2024-08-05T13:54:32.8233333+00:00

    Hi @Duncan, Ross

    To reset the password for the server admin, go to the Azure portal, select SQL Servers, select the server from the list, and then select Reset Password.

    User's image

    Please let us know if you have further questions.
    If an answer is helpful, please "Accept answer" or "Up-Vote" which might help other community members reading this thread.

    Thank You

    1 person found this answer helpful.
    0 comments No comments

  2. SSingh-MSFT 16,371 Reputation points Moderator
    2024-08-06T06:30:42.91+00:00

    Hi Duncan, Ross •,

    Welcome to Microsoft Q&A forum.

    As I understand, you want to reset Azure SQL Server password.

    You may do so using Azure Portal as mentioned by Rahul in the above answer.

    Alternatively, you can use Azure CLI/Powershell as shown below:

    With Azure CLI:

    https://learn.microsoft.com/en-us/cli/azure/sql/server?view=azure-cli-latest#az-sql-server-update

    az sql server update --resource-group <ResourceGroupName> --name <Servername> --admin-password <NewAdminAccountPassword>

    With Azure Powershell:

    Set-AzureRmSqlServer -ResourceGroupName <ResourceGroupName> -ServerName <ServerName> -SqlAdministratorPassword (ConvertTo-SecureString "<NewAdminAccountPassword>" -AsPlainText -Force)

    Refer this blogpost for full detailed step by step explanation:

    https://techcommunity.microsoft.com/t5/azure-database-support-blog/reset-lost-admin-account-password/ba-p/368920

    Hope this helps.

    Let us know if you face any issue.

    Thanks

    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.