Tips & Tricks: YOU HAVE LOST ACCESS TO SQL SERVER. NOW WHAT?
A Principal Data Engineer at Microsoft (Saleem Hakani) had authored the below SQL Server Tips & Trick and I thought it would be one that would be found handy by many. Keep this one handy you never know when you may need it (Hopefully not too many times).
You are working as a trusted DBA responsible for some extremely important SQL Servers for your company. For the sake of security, you have performed the following steps to secure SQL Servers:
- You have removed any and all built-in administrators account from SQL Server logins
- You have removed all the users (except SA) that were part of SYSADMIN server role (Including any Windows Accounts and/or SQL Server logins)
- You have set the password of SA to something extremely complex which is hard to remember.
- For day-to-day operations on SQL Server, you use your domain user account which has DBO permissions on couple of databases but doesn’t have SYSADMIN privileges.
Since you set the SA password to be complex and you have not been using it, you forgot the SA password. You are the only person in the company who would know the SA password and now you have lost the SA password.
What would you do now?
Some quick options I can think of are listed below:
1. You will try to look for the SA password on your computer hard-drive or in your emails (If you stored it in some file which is a bad practice)
2. You will rebuild Master database or reinstall SQL Server and attach all the user databases. However, this could take some time and also doesn’t guarantee that all your logins, users, permissions and server configurations will be recovered unless you plan to restore the Master database from an old backup. However, as you don’t remember the SA password, restoring the Master database will not help you and you are back to square one.
3. You will call up Microsoft PSS
You are now running out of options. What would you do?
There’s a way with which you can gain SYSADMIN access to your SQL Server. However, that would mean your Windows account will need to be a member of the local administrators group.
SQL Server allows any member of Local Administrators group to connect to SQL Server with SYSADMIN privileges.
Here are the steps you will need to perform:
1. Start the SQL Server instance using single user mode (or minimal configuration which will also put SQL Server in single user mode)
From the command prompt type: SQLServr.Exe –m (or SQLServr.exe –f)
Note: If the Binn folder is not in your environmental path, you’ll need to navigate to the Binn folder.
(Usually the Binn folder is located at: C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\Binn)
2. Once SQL Server service has been started in single user mode or with minimal configuration, you can now use the SQLCMD command from command prompt to connect to SQL Server and perform the following operations to add yourself back as an Admin on SQL Server instance.
SQLCMD –S <Server_Name\Instance_Name>
You will now be logged in to SQL Server as an Admin.
3. Once you are logged into the SQL Server using SQLCMD, issue the following commands to create a new account or add an existing login to SYSADMIN server role.
To create a new login and add that login to SYSADMIN server role:
1> CREATE LOGIN ‘<Login_Name>’ with PASSWORD=’<Password>’
2> go
1> SP_ADDSRVROLEMEMBER '<Login_Name>','SYSADMIN'
2>go
To add an existing login to SYSADMIN server role, execute the following:
1> SP_ADDSRVROLEMEMBER ‘<LOGIN_NAME>’,’SYSADMIN’
The above operation will take care of granting SYSADMIN privileges to an existing login or to a new login.
4. Once the above steps are successfully performed, the next step is to stop and start SQL Server services using regular startup options. (This time you will not need –f or –m)
Note: Those that might be thinking this might make it easy for anyone to get access to SQL Server, well remember that you do have Auditing and will have control of who gets access to the local servers administrators group. If you haven't enable controls at that level then you may have bigger security issues in hand!!!
Comments
Anonymous
January 01, 2003
True - was trying it because of this [http://social.msdn.microsoft.com/Forums/windowsazure/en-US/c307cd19-d78b-4767-8e86-127b6ebb2b6e/new-vm-sql-2014-dw-on-azure-cannot-login-to-sql-database?forum=ssdsgetstarted#73b0b6c7-db20-4630-9e6b-51a1cbbb2403
]works only if BuiltINadmin is there.Anonymous
January 01, 2003
The single user mode is awful! I also know another way to recover access to sql server:
https://www.youtube.com/watch?v=GfI-bo5TDB0
This method works in case you forgot the sa password or sa account got locked out or disabled.
It's worth a try.Anonymous
January 01, 2003
In sql server 2008 r2 the path has been changed to "C:Program FilesMicrosoft SQL ServerMSSQL10_50.MSSQLSERVERMSSQLBinn"Anonymous
January 01, 2003
Hello below query is wrong CREATE LOGIN ‘<Login_Name>’ with PASSWORD=’<Password>’ login name should not be in single quote as per your demo reader will take it in single quoteAnonymous
January 01, 2003
Check this for a solution.
http://www.mssqltips.com/sqlservertip/2682/recover-access-to-a-sql-server-instance/Anonymous
September 19, 2011
Football Team Location Problem | SQL Lion T – SQL challenge to solve Football Team Location Problem in a single query. www.sqllion.com/.../football-team-location-problemAnonymous
November 19, 2011
Excellent - thanks for sharing - please browse for <a href="www.sqlservermanagementstudio.net/.../sql-server-2008-management-studio.html"> sql server management studio</a>Anonymous
November 07, 2012
Question: Can a user with 'Sysadm' privilege in a SQL Server Instance gain access (be it privileged or any other) to the databases created under that instance without having an active account in that instance? An example would be a user authenticated to the SQL server instance through Active Directory Domain group which as been granted a 'sysadm' privilege but the user account does not have an entry in the sysusers table in any of the databases under the same instance. Any help would be appreciated. Thanks, Fitsum.Anonymous
January 16, 2013
You can also use tooling like PSEXEC to launch SQLCMD or even SSMS as the NT AUTHORITYSYSTEM account which by default is a Sysadmin inside SQL Server. This allows access with the same assumptions, that you have administrative access to the underlying OS. The nice thing about this approach is that you don't have to stop the service. Argenis blogged about it a while back... sqlblog.com/.../think-your-windows-administrators-don-t-have-access-to-sql-server-2008-by-default-think-again.aspxAnonymous
July 04, 2014
"SQL Server allows any member of Local Administrators group to connect to SQL Server with SYSADMIN privileges."
I guess this applies only if the builtinadministrators login is enabled in the SQL Server instance. builtinadministrators is not available in my instance and im not able to login in single user mode,even though im a WINDOWS local administratorAnonymous
September 03, 2014
this doesn't work in 2014 :(Anonymous
November 11, 2014
Need to reset SQL password of SQL Server admin account then try SQL password recovery software which is a perfect and successful key to unlock SQL account. Read more and try from here: -:http://goo.gl/uXNmW7Anonymous
February 24, 2015
Worked for me.. thanksAnonymous
May 11, 2015
The SQLServr.Exe –m -S does not work for me. It did not return the command prompt.
I replaced it with NET START /m"SQLCMD" and then follow your subsequent steps, and it worked.
ThanksAnonymous
August 06, 2015
The comment has been removedAnonymous
September 17, 2015
Now, its not difficult to repair the lost SQL password because there are large amount of password recovery tools are available. Sysinfotools software is a good example where you will find the excellent feature rich SQl password recovery software.Anonymous
September 18, 2015
Thank you. This worked for me in SQL Serve 2012...Anonymous
September 27, 2015
Losing password always creates frustrating time for its user and there are lots of reasons which are responsible for password issues. So without wasting any more time I would like to suggest you visit the link:http://recoveryandmanagement.com/2014/09/19/recover-sql-database-password/ and know the process of restoring lost or forget the password of SQL server.Anonymous
October 06, 2015
Does this work even if the builtinadministrators group is removed from sql server (and deprived of SQL server sysadmin as a consequence)?Anonymous
October 27, 2015
For recovery of Access File Database to SQl server with this software :- http://www.recoverfilesdata.com/access-file-recovery-software.htmlAnonymous
November 03, 2015
The comment has been removedAnonymous
December 06, 2015
Take a look on SysTools SQL Password Recovery. See here: http://www.systoolsgroup.com/sql-password-recovery.htmlAnonymous
December 08, 2015
Thanks, worked perfectly.Anonymous
December 18, 2015
http://www.lokerjobindo.com/2015/11/lowongan-kerja-asuransi.html Lowongan Kerja Asuransi
http://www.lokerjobindo.com/search/label/Lowongan%20Kerja%20Indomart Lowongan Kerja Indomart
http://www.lokerjobindo.com/2015/11/lowongan-kerja-it-programmer.html Lowongan Kerja IT Programmer
http://www.lokerjobindo.com/search/label/Lowongan%20Kerja%20Lulusan%20SMK Lowongan Kerja Lulusan SMK
http://www.lokerjobindo.com/2015/11/lowongan-kerja-pt-pertamina-retail_17.html Lowongan Kerja PT Pertamina Retail
http://www.lokerjobindo.com/search/label/Lowongan%20Kerja%20Lulusan%20Sarjana Lowongan Kerja Lulusan Sarjana
http://www.lokerjobindo.com/2015/11/lowongan-kerja-pt-pertamina-retail_17.html Lowongan Kerja PT Pertamina Retail
http://www.lokerjobindo.com/search/label/Lowongan%20Kerja%20Marketing Lowongan Kerja Marketing
http://www.lokerjobindo.com/2015/11/info-kerja-professional-insurance.html Info Kerja Professional Insurance
http://www.lokerjobindo.com/2015/11/lowongan-kerja-d3.html Lowongan Kerja D3
http://www.lokerjobindo.com/2015/11/lowongan-kerja-pt-bni-life-insurance.html Lowongan Kerja PT BNI Life Insurance
http://www.lokerjobindo.com/2015/11/lowongan-kerja-pt-surya-madistrindo.html Lowongan Kerja PT Surya Madistrindo
http://www.lokerjobindo.com/search/label/Lowongan%20Kerja%20Metro%20TV Lowongan Kerja Metro TV
http://www.lokerjobindo.com/2015/11/loker-terbaru-akunting-pt-sumber.html Loker Terbaru Akunting PT Sumber Alfaria Trijaya, Tbk
http://www.lokerjobindo.com/2015/11/lowongan-kerja-it-programmer.html Lowongan Kerja IT Programmer
http://www.lokerjobindo.com/search/label/Lowongan%20Kerja%20Negeri Lowongan Kerja Negeri
http://www.lokerjobindo.com/2015/11/lowongan-kerja-pt-pertamina-retail_17.html Lowongan Kerja PT Pertamina Retail
http://www.lokerjobindo.com/search/label/Lowongan%20Kerja%20Pegawai%20Negeri Lowongan Kerja Pegawai Negeri
http://www.lokerjobindo.com/2015/11/lowongan-kerja-management-trainee.html Lowongan Kerja Management Trainee
http://www.lokerjobindo.com/search/label/Lowongan%20Kerja%20Penerbangan Lowongan Kerja Penerbangan
http://www.lokerjobindo.com/2015/11/info-kerja-professional-insurance.html Info Kerja Professional Insurance