| |
 |
|
DBA_AUDIT_SESSION view tips
Oracle Tips by Burleson Consulting |
DBA_AUDIT_SESSION
<< Return to the index
Oracle 11g makes the following comments about the DBA_AUDIT_SESSION table: "All audit trail records concerning CONNECT and DISCONNECT"
Related notes on DBA_AUDIT_SESSION:
Column description of the DBA_AUDIT_SESSION view:LOGOFF_DLOCKNo comments exist for the LOGOFF_DLOCK column of the DBA_AUDIT_SESSION table. SESSIONIDNo comments exist for the SESSIONID column of the DBA_AUDIT_SESSION table. RETURNCODENo comments exist for the RETURNCODE column of the DBA_AUDIT_SESSION table. CLIENT_IDNo comments exist for the CLIENT_ID column of the DBA_AUDIT_SESSION table. SESSION_CPUNo comments exist for the SESSION_CPU column of the DBA_AUDIT_SESSION table. EXTENDED_TIMESTAMPNo comments exist for the EXTENDED_TIMESTAMP column of the DBA_AUDIT_SESSION table. PROXY_SESSIONIDNo comments exist for the PROXY_SESSIONID column of the DBA_AUDIT_SESSION table. GLOBAL_UIDNo comments exist for the GLOBAL_UID column of the DBA_AUDIT_SESSION table. INSTANCE_NUMBERNo comments exist for the INSTANCE_NUMBER column of the DBA_AUDIT_SESSION table. OS_PROCESSNo comments exist for the OS_PROCESS column of the DBA_AUDIT_SESSION table. OS_USERNAMENo comments exist for the OS_USERNAME column of the DBA_AUDIT_SESSION table. USERNAMENo comments exist for the USERNAME column of the DBA_AUDIT_SESSION table. USERHOSTNo comments exist for the USERHOST column of the DBA_AUDIT_SESSION table. TERMINALNo comments exist for the TERMINAL column of the DBA_AUDIT_SESSION table. TIMESTAMPNo comments exist for the TIMESTAMP column of the DBA_AUDIT_SESSION table. ACTION_NAMENo comments exist for the ACTION_NAME column of the DBA_AUDIT_SESSION table. LOGOFF_TIMENo comments exist for the LOGOFF_TIME column of the DBA_AUDIT_SESSION table. LOGOFF_LREADNo comments exist for the LOGOFF_LREAD column of the DBA_AUDIT_SESSION table. LOGOFF_PREADNo comments exist for the LOGOFF_PREAD column of the DBA_AUDIT_SESSION table. LOGOFF_LWRITENo comments exist for the LOGOFF_LWRITE column of the DBA_AUDIT_SESSION table.
DBA_AUDIT_SESSION View SourceOracle 11g's data dictionary defines the DBA_AUDIT_SESSION view using the following source query:
select os_username, username, userhost, terminal, timestamp, action_name,
logoff_time, logoff_lread, logoff_pread, logoff_lwrite, logoff_dlock,
sessionid, returncode, client_id, session_cpu, extended_timestamp,
proxy_sessionid, global_uid, instance_number, os_process
from dba_audit_trail
where action between 100 and 102
 |
If you like Oracle tuning, see the book "Oracle
Tuning: The Definitive Reference", with 950 pages of tuning tips and
scripts.
You can buy it direct from the publisher for 30%-off and get
instant access to the code depot of Oracle tuning scripts. |
 |
 |
|
Download your Oracle scripts now:
www.oracle-script.com
The
definitive Oracle Script collection for every Oracle professional DBA
|
|