DBA_AUDIT_OBJECT displays audit trail records for all objects in the database.
USER_AUDIT_OBJECT displays audit trail records for the objects accessible to the current user.
| Column | Datatype | NULL | Description | 
|---|---|---|---|
| OS_USERNAME | VARCHAR2(255) | Operating system login username of the user whose actions were audited | |
| USERNAME | VARCHAR2(30) | Name (not ID number) of the user whose actions were audited | |
| USERHOST | VARCHAR2(128) | Client host machine name | |
| TERMINAL | VARCHAR2(255) | Identifier of the user's terminal | |
| TIMESTAMP | DATE | Date and time of the creation of the audit trail entry (date and time of user login for entries created by AUDIT SESSION) in the local database session time zone | |
| OWNER | VARCHAR2(30) | Creator of the object affected by the action | |
| OBJ_NAME | VARCHAR2(128) | Name of the object affected by the action | |
| ACTION_NAME | VARCHAR2(28) | Name of the action type corresponding to the numeric code in the ACTIONcolumn inDBA_AUDIT_TRAIL | |
| NEW_OWNER | VARCHAR2(30) | Owner of the object named in the NEW_NAMEcolumn | |
| NEW_NAME | VARCHAR2(128) | New name of an object after a RENAMEor the name of the underlying object | |
| SES_ACTIONS | VARCHAR2(19) | Session summary (a string of 16 characters, one for each action type in the order ALTER,AUDIT,COMMENT,DELETE,GRANT,INDEX,INSERT,LOCK,RENAME,SELECT,UPDATE,REFERENCES, andEXECUTE). Positions 14, 15, and 16 are reserved for future use. The characters are:
 | |
| COMMENT_TEXT | VARCHAR2(4000) | Text comment on the audit trail | |
| SESSIONID | NUMBER | NOT NULL | Numeric ID for each Oracle session | 
| ENTRYID | NUMBER | NOT NULL | Numeric ID for each audit trail entry in the session | 
| STATEMENTID | NUMBER | NOT NULL | Numeric ID for each statement run | 
| RETURNCODE | NUMBER | NOT NULL | Oracle error code generated by the action. Some useful values: 
 | 
| PRIV_USED | VARCHAR2(40) | System privilege used to execute the action | |
| CLIENT_ID | VARCHAR2(64) | Client identifier in each Oracle session | |
| ECONTEXT_ID | VARCHAR2(64) | Application execution context identifier | |
| SESSION_CPU | NUMBER | Amount of CPU time used by each Oracle session | |
| EXTENDED_TIMESTAMP | TIMESTAMP(6) WITH TIME ZONE | Timestamp of the creation of the audit trail entry (timestamp of user login for entries created by AUDIT SESSION) in UTC (Coordinated Universal Time) time zone | |
| PROXY_SESSIONID | NUMBER | Proxy session serial number, if an enterprise user has logged in through the proxy mechanism | |
| GLOBAL_UID | VARCHAR2(32) | Global user identifier for the user, if the user has logged in as an enterprise user | |
| INSTANCE_NUMBER | NUMBER | Instance number as specified by the INSTANCE_NUMBERinitialization parameter | |
| OS_PROCESS | VARCHAR2(16) | Operating System process identifier of the Oracle process | |
| TRANSACTIONID | RAW(8) | Transaction identifier of the transaction in which the object is accessed or modified | |
| SCN | NUMBER | System change number (SCN) of the query | |
| SQL_BIND | NVARCHAR2(2000) | Bind variable data of the query | |
| SQL_TEXT | NVARCHAR2(2000) | SQL text of the query | |
| OBJ_EDITION_NAME | VARCHAR2(30) | Reserved for future use | 
Note:
TheSQL_BIND and SQL_TEXT columns are only populated if the AUDIT_TRAIL initialization parameter is set to db, extended.See Also:
"AUDIT_TRAIL"