Using a trigger to turn on tracing 2004-02-13 - By Juan Cachito Reyes Pacheco
Even when Tom Kyte will killme for saying it.
Why don 't you try to create the trigger under sys
This is the processo I use to get all the statistics, and it always works,
at least for me.
*****************************
#TIMED_STATISTICS = TRUE
#STATISTICS_LEVEL = ALL
#max_dump_file_size = UNLIMITED
*****************************
Restart database
*****************************
create trigger
CREATE OR REPLACE TRIGGER SYS.TGR_ENABLE_TRACE
AFTER
LOGON
ON DATABASE
BEGIN
IF USER = 'SUP ' THEN
EXECUTE IMMEDIATE 'ALTER SESSION SET EVENTS ' '10046 TRACE NAME CONTEXT
FOREVER, LEVEL 12 ' ' ';
END IF;
END;
/
*************************
*****************************
Do what causes the problem.
*****************************
to get the xxx server ID, of current user
SELECT A.SPID
FROM V$PROCESS A,V$SESSION B
WHERE A.ADDR = B.paddr
AND B.AUDSID = USERENV( 'sessionid ' );
*****************************
search in the trace directory sSID_ora_xxx.trc, that user
*****************************
Execute
TKPROF \sbbv_ora_740.trc C:\revisar.TXT
check C:\revisar.TXT
-- -- Original Message -- --
From: "Schauss, Peter " <peter.schauss@(protected) >
To: <oracle-l@(protected) >
Sent: Friday, February 13, 2004 2:39 PM
Subject: RE: Using a trigger to turn on tracing
The owner of the trigger is system.
-- --Original Message-- --
From: Khedr, Waleed [mailto:Waleed.Khedr@(protected)]
Sent: Friday, February 13, 2004 12:59 PM
To: oracle-l@(protected)
Subject: RE: Using a trigger to turn on tracing
Grant it to the trigger owner
-- --Original Message-- --
From: Schauss, Peter [mailto:peter.schauss@(protected)]
Sent: Friday, February 13, 2004 12:41 PM
To: oracle-l@(protected)
Subject: RE: Using a trigger to turn on tracing
I granted alter session to my test user and I still get the same error
message.
Any other ideas?
Thanks,
Peter Schauss
-- --Original Message-- --
From: Bobak, Mark [mailto:Mark.Bobak@(protected)]
Sent: Friday, February 13, 2004 11:41 AM
To: oracle-l@(protected)
Subject: RE: Using a trigger to turn on tracing
ALTER SESSION.
-- --Original Message-- --
From: Schauss, Peter [mailto:peter.schauss@(protected)]
Sent: Friday, February 13, 2004 11:37 AM
To: Oracle-L (E-mail)
Subject: Using a trigger to turn on tracing
I am trying to use a trigger to turn on tracing for a specified user.
I copied the example from Cary Millsap 's _Optimizing Oracle Performance_.
The text of the trigger is:
create or replace trigger trace_user after logon on database
begin
if user = 'TEST ' then
execute immediate 'alter session set timed_statistics =
true ';
execute immediate 'alter session set max_dump_file_size =
unlimited ';
execute immediate
'alter session set events ' '10046 trace name
context forever, level 8 ' ' ';
end if;
end;
/
When I try to log on as user TEST, I get:
ORA-00604 (See ORA-00604.ora-code.com): error occurred at recursive SQL level 1
ORA-01031 (See ORA-01031.ora-code.com): insufficient privileges
ORA-06512 (See ORA-06512.ora-code.com): at line 5
What privilege does TEST need here?
Thanks,
Peter Schauss
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
To unsubscribe send email to: oracle-l-request@(protected)
put 'unsubscribe ' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
To unsubscribe send email to: oracle-l-request@(protected)
put 'unsubscribe ' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
To unsubscribe send email to: oracle-l-request@(protected)
put 'unsubscribe ' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
To unsubscribe send email to: oracle-l-request@(protected)
put 'unsubscribe ' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
To unsubscribe send email to: oracle-l-request@(protected)
put 'unsubscribe ' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
To unsubscribe send email to: oracle-l-request@(protected)
put 'unsubscribe ' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --
|
|