The fine-grained-auditing tag has no wiki summary.
2
votes
3answers
49 views
Auditing specific database events in SQL Server
For auditing purposes, we have a requirement in which we have to enable Auditing for theses events:
DBA Logins
Changes made by DBAs LIKE INSERT, DELETE, UPDATE, ALTER (etc.)
Changes made by our ...
2
votes
1answer
251 views
Archiving fga_log$: sys.dbms_audit_mgmt.clean_audit_trail doesn't delete anything
I am having a problem to archive and then delete portions of the fga_log$ table.
Here's what a script basically does
insert into fga_log_archive
select
...
from
sys.fga_log$;
begin
...