Who created that user?

Posted by AaronBertrand on SQL Blog See other posts from SQL Blog or by AaronBertrand
Published on Wed, 02 Feb 2011 22:35:00 GMT Indexed on 2011/02/02 23:30 UTC
Read the original article Hit count: 210

Filed under:
|
Twitter has provided some great fodder for blog content lately. And twice this week, I've found an excuse to take advantage of the default trace. Tonight @meltondba asked: I'm trying to find who created a user act in a DB It is true, SQL Server doesn't really keep track of who created objects, such as user accounts in a database. You can get some of this information from the default trace, though, since it tracks EventClass 109 (Audit Add DB User). If you run this code: USE [master] ; GO CREATE LOGIN...(read more)

© SQL Blog or respective owner

Related posts about auditing

Related posts about default trace