This article is based on setup in a database running classical auditing in version 18.6.0.0.0, but should be possible to use in older versions, too.
After you have verified that your table is indeed being audited, you can move on to see exactly what was executed at a specific point in time.
To populate the columns SQL_BIND and SQL_TEXT, you need to make sure you gather extended auditing information in your database.
alter system set audit_trail=db, extended scope=spfile; shutdown immediate startup
Now you can use the following query to find
SELECT TIMESTAMP, OS_USERNAME, OBJ_NAME,USERHOST, SESSIONID, USERNAME,ACTION_NAME, RETURNCODE,SQL_BIND,SQL_TEXT FROM DBA_AUDIT_TRAIL WHERE OWNER = 'SCOTT' ORDER BY TIMESTAMP DESC;
TIMESTAMP | OS_USERNAME | OBJ_NAME | USERHOST | SESSIONID | USERNAME | ACTION_NAME | RETURNCODE | SQL_BIND | SQL_TEXT |
---|---|---|---|---|---|---|---|---|---|
07.08.2019 | JOHN | EMP | jonsPC | 174335 | DBAADMIN | SELECT | 0 | SELECT * FROM SCOTT.EMP | |
06.08.2019 | LISA | EMP | lisaspc | 171886 | LISA | SELECT | 0 | ||
05.08.2019 | FRED | DEPT | fredsPC | 141131 | SCOTT | SELECT | 0 |
No comments:
Post a Comment