An Azure relational database service.
You can reset from Azure portal :
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
A SQL Server instance has limited access restricted to server admin credentials (SQL credentials). The goal is to either reset the admin password or create an additional credential, but access to the database is currently unavailable—only Azure configuration is accessible.
Is there a solution available for this issue?
There is critical data that cannot be accessed at the moment.
An Azure relational database service.
Answer accepted by question author
You can reset from Azure portal :
Hi @MDDM,
Thanks for the question and using MS Q&A platform.If you are unable to access your SQL Server instance due to forgotten or lost admin credentials, and you only have access to Azure configuration (i.e., Azure portal), there are steps you can take to regain access by either resetting the admin password or creating a new admin credential. Here’s how you can address this issue:
Reset SQL Server Admin Password via Azure Portal
You can reset the SQL Server admin password using the Azure portal if you have access to the Azure subscription and the relevant SQL Server resource.
Follow these steps:
Sign in to the Azure portal (https://portal.azure.com).
Navigate to the SQL Server instance:
Reset the Server Admin Password:
Once the password is reset, you should be able to connect to the SQL Server instance using the new credentials.
Use Azure CLI or PowerShell to Reset Password
If you prefer automation, you can use Azure CLI or PowerShell to reset the password for the SQL Server admin:
Using Azure CLI:
az sql server update --name <server-name> --resource-group <resource-group> --admin-password <new-password>
Using PowerShell:
Set-AzSqlServer -ResourceGroupName <resource-group> -ServerName <server-name> -SqlAdministratorPassword <new-password>
This will also allow you to reset the password from a command-line interface.
Please go through the similar threads that might help you:
Hope this helps. Do let us know if you any further queries. If this answers your query, do click Accept Answer and Yes for was this answer helpful. And, if you have any further query do let us know.