dba_enabled_traces 資料
通過sql_trace=true和下面的方法 ,dba_enabled_traces 裡都沒有資料。
SQL> select sid,serial# from v$session where sid=159;
SID SERIAL#
---------- ----------
159 18
SQL> begin
--dbms_monitor.session_trace_disable(session_id=>139,serial_num=>159);
dbms_monitor.session_trace_enable(session_id=>159,serial_num=>18,waits=>TRUE);
end;
/ 2 3 4 5
PL/SQL procedure successfully completed.
SQL> select sql_trace from v$session where sid=159;
SQL_TRACE
----------------
ENABLED
SQL> select count(*) from dba_enabled_traces;
COUNT(*)
----------
0
用下面的方法 ,dba_enabled_traces裡有資料:
SQL> exec dbms_session.set_identifier('aaaa');
PL/SQL procedure successfully completed.
SQL> exec dbms_monitor.client_id_trace_enable(client_id => 'aaaa',waits => true);
PL/SQL procedure successfully completed.
SQL> select * from v$mystat where rownum=1;
SID STATISTIC# VALUE
---------- ---------- ----------
138 0 1
SQL> select sql_trace from v$session where sid=138;
SQL_TRACE
----------------
DISABLED
SQL> select count(*) from dba_enabled_traces;
COUNT(*)
----------
1
CLIENT_ID_TRACE_ENABLE Procedure
Enables the trace for a given Client Identifier globally for the database 這個是for database
SESSION_TRACE_ENABLE Procedure
Enables the trace for a given database session identifier (SID) on the local instance 這個是這個例項中的session
v$session裡的值也可以反映出來 一些
dba_enabled_traces 不包含 會話 級別的
所以,會話級別的沒有在 dba_enabled_traces裡顯示出來
bysong
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25099483/viewspace-774759/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 大資料,大資料,大資料大資料
- 資料預處理- 資料清理 資料整合 資料變換 資料規約
- 資料幀、資料包、資料包以及資料段 詳解
- 資料結構之資料、資料元素、資料項、資料物件之間的關係資料結構物件
- 【資料庫資料恢復】SAP資料庫資料恢復案例資料庫資料恢復
- Docker資料管理(資料卷+資料卷容器)Docker
- 資料庫修改資料資料庫
- 大資料資料收集大資料
- 資料庫資料整理資料庫
- 熱資料&冷資料
- 【資料庫資料恢復】Sql Server資料庫資料恢復案例資料庫資料恢復SQLServer
- 資料湖 vs 資料倉儲 vs 資料庫資料庫
- 如何理解資料管理、資料治理、資料運營
- 大資料、資料分析、資料探勘的差別大資料
- Greenplum資料庫,分散式資料庫,大資料資料庫分散式大資料
- 大資料圖資料庫之TAO資料庫大資料資料庫
- 大資料如何採集資料?大資料的資料從何而來?大資料
- 【資料庫資料恢復】MS SQL資料庫附加資料庫出錯怎麼恢復資料?資料庫資料恢復SQL
- 【資料庫資料恢復】透過資料頁恢復Sql Server資料庫資料的過程資料庫資料恢復SQLServer
- IndexedDB 資料庫新增資料Index資料庫
- 大資料hadoop資料大資料Hadoop
- 大資料學習資料大資料
- 資料湖中加熱資料?
- 定量資料和定性資料
- MySQL資料庫資料管理MySql資料庫
- 大資料的資料模型大資料模型
- 資料模型與資料分析模型
- 資料庫 - 資料查詢資料庫
- 資料探勘——認識資料
- Mysql資料庫-資料模型MySql資料庫模型
- 資料治理--資料質量
- 資料治理--後設資料
- 資料預處理-資料整合與資料變換
- 資料湖+資料倉儲 = 資料湖庫架構架構
- php資料庫資料如何去除重複資料呢?PHP資料庫
- 資料探勘之資料準備——原始資料的特性
- 海量資料處理_資料泵分批資料遷移
- 【資料庫資料恢復】如何恢復Oracle資料庫truncate表的資料資料庫資料恢復Oracle