Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where are SQL Server user credentials stored?

Tags:

sql-server

Where are SQL Server user name and password stored?

like image 623
Domnic Avatar asked Mar 01 '11 10:03

Domnic


1 Answers

In the DB called "master", you can view them with:

SELECT * FROM master.sys.syslogins

However passwords are encrypted.

As per Richard's comment: please note that syslogins is no longer a physical table (in SQL server 2005 and 2008) but only a view provided for backwards compatibility.

like image 102
Paolo Falabella Avatar answered Oct 05 '22 09:10

Paolo Falabella