Troubleshooting Tip: Recovering Access to a MSSQL Database


Userlevel 7
Badge +20

Hey everyone,

I wanted to share this recent blog post I made with yourselves as whilst it’s not directly related to Veeam, I was helping someone that had locked themselves out of a Veeam database and needed to take a native backup for a support case with Veeam. :relaxed:

 

I was recently helping a customer create a SQL database backup for a support ticket and noticed that they had an interesting SQL Server configuration. There was only a single account with sysadmin rights, the sa account, but this account wasn’t allowed to sign in. The SQL Server was domain joined but there was just a single group allowed with Windows Authentication and that had the “public” server role only.

There are a few reasons this could happen, accidental permission changes, or groups and/or user accounts being deleted from the domain that had been assigned the sysadmin role as examples. Thankfully it’s not the end of the world for you if you find yourself in this situation.

 

Breaking Back into your database!

 

This will involve some interruption, we have to put the database into a single user mode, which requires stopping and starting the database with a specific parameter. Through whichever method you find most suitable, stop any services/programs relying on your database and then stop your database. For example via an elevated command prompt, type in:

NET STOP <INSTANCENAME>

Then to start the instance in single user mode, run the following command via an elevated command prompt:

NET START <INSTANCENAME> -m "SQLCMD"

Why did we append “SQLCMD” to the end of this command? By placing “SQLCMD” into our command, we’re restricting who can use the single user mode to just connections identified as the SQLCMD tool. Alternatives if you wished to use SQL Server Management Studio would be “Microsoft SQL Server Management Studio – Query”. This is done to prevent another application taking the single user session and blocking us from performing our recovery works.

Once this is done you won’t notice anything has changed, you’ll be prompted to input your new command as usual. At this point, run the following command:

SQLCMD -S <Computername>\<InstanceName>

Alternatively you can run the following command if you’re connected locally on the server:

SQLCMD -S .\<InstanceName>

You’ll then see a screen similar to the below:

Now we can create our new user(s) as necessary, you may choose to use domain membership here instead of user accounts. Be mindful if you create SQL authentication based accounts, if you haven’t got Mixed Authentication Mode enabled, these won’t allow you to sign in at the end of this process.

So lets get started creating our user accounts, in this example I’ll be using Windows Authentication but it’s extremely similar for SQL accounts.

Firstly, we need to create a “login” for the database, a login is a security entity at a server level as opposed to a “user” which is at a database level. To create our Windows authentication based “login”, we run the following command:

CREATE LOGIN [<DOMAIN>\<USER or GROUP name>] FROM WINDOWS;

If you then wished to deploy a “user” you would then follow up with the following command:

USE <Name of Database>
GO
CREATE USER [<DOMAIN>\<USER or GROUP name>] FROM LOGIN [<DOMAIN>\<USER or GROUP name>]
GO

In this instance however, I’m just interested in gaining sysadmin rights back to the database, so I’ll just run the following command next:

ALTER SERVER ROLE sysadmin ADD MEMBER [<DOMAIN>\<USER or GROUP name>]
GO

Alternatively, again if I wished to apply granular controls to a particular database, you could run:

ALTER ROLE <ROLE NAME> ADD MEMBER [<DOMAIN>\<USER or GROUP name>]
GO

Finally, when you’re done, just run EXIT.

Now we just stop and start the service as normal, and we’re back in as sysadmin!

NET STOP <INSTANCENAME>
NET START <INSTANCENAME>

Hopefully this helps get someone back into their database speedily!


4 comments

Userlevel 7
Badge +3

great thing. thanks for share with us

Userlevel 7
Badge +3

Great troubleshooting tip, @MicoolPaul

Userlevel 7
Badge +17

Cool! This reminds me of days long past :older_man_tone2:


Oh yes, many years ago I had to recover some MS SQL DBs :joy::joy::joy:

I am glad that the Veeam DBs didn’t have a problem up to now….

Userlevel 7
Badge +13

Cool! This reminds me of days long past :older_man_tone2:

Comment