SA account property/password change
You can use below script to get an idea when was the last time SA account property/password changed.
USE Master
GO
SELECT [name], sid, create_date, modify_date
FROM sys.sql_logins
WHERE [name] = 'sa'
GO
You can use below script to get an idea when was the last time SA account property/password changed.
USE Master
GO
SELECT [name], sid, create_date, modify_date
FROM sys.sql_logins
WHERE [name] = 'sa'
GO
No comments:
Post a Comment