Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL password change logging??

Status
Not open for further replies.

DebiJo

Technical User
Apr 30, 2002
363
US
Is there a log that will track password changes in SQL? We have windows auditing turned on. I've looked in those logs as well as the SQL logs and I'm not seeing anything. Any ideas?

Thanks,
Debi
 
I don't believe there is a 'builtin' logger for password changes.

Suggestions:

Use Profiler, create a trace that just tracks the use of sp_password.

Create an UPDATE trigger on the sysxlogins table in the Master database (making changes to the master database is not always a good thing, but it is a possibility).

-SQLBill
 
You could write your own version of sp_password which does some additional logging before and after calling sp_password. Then tell your users to use this new procedure, and revoke there access to exec sp_password.

Denny

--Anything is possible. All it takes is a little research. (Me)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top