Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: SQL TRACE
Incorrect. That will take care of all the existing sessions,
but the new sessions will still have SQL_TRACE=TRUE setting
as it is still set on the system level.
Mladen Gogala
Oracle DBA
Phone:(203) 459-6855
Email:mgogala_at_oxhp.com
-----Original Message-----
Sent: Friday, May 16, 2003 2:17 PM
To: Multiple recipients of list ORACLE-L
Here is what you should do..
BEGIN
FOR sess_rec in ( select sid,serial# from v$session ) LOOP
sys.dbms_system.set_sql_trace_in_session(sess_rec.sid,sess_rec.serial#,F
ALSE);
END LOOP;
END;
/
-----Original Message-----
Sent: Friday, May 16, 2003 9:32 AM
To: Multiple recipients of list ORACLE-L
Hi List,
Is there any way to set the sql_trace=false whithout shutdown the
database?
For all the sessions
using the information. Please contact the sender immediately by return e-mail and delete the original message from your system.
===================== End Confidentiality Statement =====================
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Hamid Alavi
INET: hamid.alavi_at_quovadx.com
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Valiveru, Siva
INET: SValiveru_at_ea.com
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Fri May 16 2003 - 13:53:24 CDT