When you are using MS SQL Server in mixed mode, it is very important that you know your SA password.

There can be different reasons you lost the password

  • Person who installed the SQL Server knows the password but has left the building.
  • You did not write down the password in your password file
  • Password file is lost

Steps to recover the SA password

 

 

  • Start the SQL services. These are now running in Single User Mode.
  • Start CMD on tthe SQL server
  • Start the SQLCMD command. Now you will see following screen

    How to recover SA password on Microsoft SQL Server 2008 R2

  • Now we create a new user. Enter following commands
    • CREATE LOGIN recovery WITH PASSWORD = ‘TopSecret_1′  (Remember SQL server has default strong password policy)
    • Go
      • Now this user is created
  • Now we grant the user a SYSADMIN roles using the same SQLCMD window.
    • sp_addsrvrolemember ‘recovery’, ‘sysadmin’
    • go
  • Stop the SQL service again
  • Change the SQL service properties back to the default settings

    How to recover SA password on Microsoft SQL Server 2008 R2

  • Start the SQL service again and use the new created login (recovery in my example)
  • Go via the security panel to the properties and change the password of the SA account.

    How to recover SA password on Microsoft SQL Server 2008 R2

  • Now write down the new SA password.

相关文章:

  • 2021-06-09
  • 2021-06-04
  • 2021-11-18
  • 2021-11-15
  • 2022-12-23
  • 2021-12-04
  • 2021-12-14
猜你喜欢
  • 2021-12-17
  • 2022-12-23
  • 2022-12-23
  • 2021-11-03
  • 2022-12-23
  • 2021-05-22
  • 2022-12-23
相关资源
相似解决方案