Note
This view is available starting with V2.2.30.
Purpose
Records the action ID and the corresponding name in the audit records.
Applicability
This view is available only in Oracle mode.
Columns
| Column | Type | Nullable | Description |
|---|---|---|---|
| ACTION | NUMBER(38) | NO | The action ID in the audit record. |
| NAME | VARCHAR2(128) | NO | The name corresponding to the action ID in the audit record. |
Sample query
Query the action ID and the corresponding name in the audit records, and display the first 10 records.
obclient [SYS]> SELECT * FROM SYS.AUDIT_ACTIONS WHERE ROWNUM <=10;
The query result is as follows:
+--------+----------------+
| ACTION | NAME |
+--------+----------------+
| 0 | UNKNOWN |
| 1 | CREATE TABLE |
| 2 | INSERT |
| 3 | SELECT |
| 4 | CREATE CLUSTER |
| 5 | ALTER CLUSTER |
| 6 | UPDATE |
| 7 | DELETE |
| 8 | DROP CLUSTER |
| 9 | CREATE INDEX |
+--------+----------------+
10 rows in set
References
View the audit trail entries generated by
AUDIT EXISTSandAUDIT NOT EXISTS: DBA_AUDIT_EXISTSView the audit trail entries for all objects:
View the audit trail entries for
CONNECTandDISCONNECT:View all audit trail entries:
View the audit trail entries for
GRANT,REVOKE,AUDIT,NOAUDIT, andALTER SYSTEMstatements:For more information about security audit, see the following topics: