oracle11g账号管理Using Oracle DBMS_SYSTEM.SET_EV and Oracle DBMS_SYSTEM.READ_EV

Using Oracle DBMS_SYSTEM.SET_EV and Oracle DBMS_SYSTEM.READ_EV

 

There are two useful procedures related to events in the DBMS_SYSTEM package. They are SET_EV, used to set a specific event, and READ_EV, used to see the current status of an event. The procedures are defined as follows:

 

PROCEDURE DBMS_SYSTEM.SET_EV

 

Argument Name Type In/Out Default?

—————————— ———————– —— ——–

SI BINARY_INTEGER INSE BINARY_INTEGER INEV BINARY_INTEGER INLE BINARY_INTEGER INNM VARCHAR2 IN

 

 

Oracle DBMS_SYSTEM.SET_EV To Set A Trace Event

 

The Oracle dbms_system.set_ev procedure can be used to set events too. The procedure has the following syntax:

 

dbms_system.set_ev (si binary_integer, -- SIDse binary_integer, -- Serial#ev binary_integeoracle账号r, -- Event code or number to set.le binary_integer, -- Usually level to tracenm varchar2 -- sets the Event Name. null = "context forever".)

 

 

To enable 10046 level 12 tracing for SID 22 with a serial# of 99 we would execute the set_ev procedure as shown here:

 

exec dbms_system.set_ev(22,99,10046,12,’’);To disable 10046 tracing enter the following:exec dbms_system.set_ev(22,99,10046,0,’’);

 

 

To disable tracing for another user’s session use: 

 

DBMS_SYSTEM.SET_SQL_TRACE_IN_SESSION(sid,serial#,false);

 

 

此条目发表在oracle metalink账号分类目录,贴了标签。将固定链接加入收藏夹。