—
— Retrieves Security-Related Information
— for all the SQL Server Logins
—
— SQL Server versions supported: SQL Server 2005 or later
—
SELECT
[name] as LoginName,
LOGINPROPERTY ([name] , ‘DefaultDatabase’) as DefaultDatabase,
LOGINPROPERTY ([name] , ‘DaysUntilExpiration’) as DaysUntilExpiration,
(CASE ISNULL(LOGINPROPERTY ([name] , ‘IsExpired’),0) WHEN 0 THEN ‘False’ ELSE ‘True’ END) as IsExpired,
(CASE ISNULL(LOGINPROPERTY ([name] , ‘IsLocked’),0) WHEN 0 THEN ‘False’ ELSE ‘True’ END) as IsLocked,
LOGINPROPERTY ([name] , ‘PasswordLastSetTime’) as PasswordLastSetTime,
LOGINPROPERTY ([name] , ‘PasswordHashAlgorithm’) as PasswordHashAlgorithm
FROM master..syslogins
— Retrieves Security-Related Information
— for all the SQL Server Logins
—
— SQL Server versions supported: SQL Server 2005 or later
—
SELECT
[name] as LoginName,
LOGINPROPERTY ([name] , ‘DefaultDatabase’) as DefaultDatabase,
LOGINPROPERTY ([name] , ‘DaysUntilExpiration’) as DaysUntilExpiration,
(CASE ISNULL(LOGINPROPERTY ([name] , ‘IsExpired’),0) WHEN 0 THEN ‘False’ ELSE ‘True’ END) as IsExpired,
(CASE ISNULL(LOGINPROPERTY ([name] , ‘IsLocked’),0) WHEN 0 THEN ‘False’ ELSE ‘True’ END) as IsLocked,
LOGINPROPERTY ([name] , ‘PasswordLastSetTime’) as PasswordLastSetTime,
LOGINPROPERTY ([name] , ‘PasswordHashAlgorithm’) as PasswordHashAlgorithm
FROM master..syslogins
For more info, check out the following links:
Artemakis Artemiou is a Senior SQL Server Architect, Author, a 9 Times Microsoft Data Platform MVP (2009-2018). He has over 20 years of experience in the IT industry in various roles. Artemakis is the founder of SQLNetHub and {essentialDevTips.com}. Artemakis is the creator of the well-known software tools Snippets Generator and DBA Security Advisor. Also, he is the author of many eBooks on SQL Server. Artemakis currently serves as the President of the Cyprus .NET User Group (CDNUG) and the International .NET Association Country Leader for Cyprus (INETA). Moreover, Artemakis teaches on Udemy, you can check his courses here.