I would like to create a session for collecting events for all operations under server instance. Some of them work for me but very strange that my session can't collect events for operations like:
CREATE/ALTER/DROP CREDENTIAL
CREATE/ALTER/DROP ENDPOINT
CREATE/ALTER/DROP LOGIN
CREATE/ALTER/DROP SERVER ROLE
I used for configuration with events from session library:
object_created
object_deleted
object_altered
I follow the provided list of objects types from https://msdn.microsoft.com/en-us/library/ms180953.aspx
I even used sp_statement_completed - not works.
I think it can be related with some SQL Server security settings or something like this. Do you have any idea how to collect events for this operations?
CREATE/ALTER/DROP CREDENTIAL
CREATE/ALTER/DROP ENDPOINT
CREATE/ALTER/DROP LOGIN
CREATE/ALTER/DROP SERVER ROLE
I used for configuration with events from session library:
object_created
object_deleted
object_altered
I follow the provided list of objects types from https://msdn.microsoft.com/en-us/library/ms180953.aspx
I even used sp_statement_completed - not works.
I think it can be related with some SQL Server security settings or something like this. Do you have any idea how to collect events for this operations?