Hello All!
I am working on getting the Failed_Database_Authentication_Group and Successful_Database_Authentication_Group specifications to work, but my changes do not seem to be taking.
I disable the audit and the database audit specification, I modify the database audit specification, adding
save the changes, enable the audit and then the database audit specification, logout of SSMS and then log back in to SSMS and I do not see any entries with action_id = DAGS. My question is, does this not work the way I am expecting it to? I was thinking that it would record every time a user connects to that server and authenticates to the DB in which the database audit specification was created. I have gone into the same database audit specification and added
and then run a select against that table and it logs the query, but still doesn't seem to log the database authentication.
Am I missing something?
Thanks in advance,
Willie
I am working on getting the Failed_Database_Authentication_Group and Successful_Database_Authentication_Group specifications to work, but my changes do not seem to be taking.
I disable the audit and the database audit specification, I modify the database audit specification, adding
Code:
ADD (SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP )
save the changes, enable the audit and then the database audit specification, logout of SSMS and then log back in to SSMS and I do not see any entries with action_id = DAGS. My question is, does this not work the way I am expecting it to? I was thinking that it would record every time a user connects to that server and authenticates to the DB in which the database audit specification was created. I have gone into the same database audit specification and added
Code:
ADD (SELECT ON OBJECT::[dbo].[CIB_ThirdPartyProvider] BY [public])
and then run a select against that table and it logs the query, but still doesn't seem to log the database authentication.
Am I missing something?
Thanks in advance,
Willie