Someone went into a controlled environment and changed the default database schema for a database user.
ALTER USER [sensitiveuser] WITH DEFAULT_SCHEMA=[sys]
Looking for an entry in the transaction logs. Apex SQL log does not appear to scan the tranlogs for this information.
Is ALTER USER a logged statement? We don't have auditing installed yet (coming soon). If it is logged, would I just have to DBCC LOG and read through all of the entries looking for ALTER USER?
Need time stamp of change and user ID of changing party if possible.
Thanks John