Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Using a trigger to turn on tracing

RE: Using a trigger to turn on tracing

From: Khedr, Waleed <Waleed.Khedr_at_FMR.COM>
Date: Fri, 13 Feb 2004 12:59:18 -0500
Message-ID: <D91D9D5A73FC694BBC52F1EB26AD410F02411E79@MSGBOSCLD2WIN.DMN1.FMR.COM>


Grant it to the trigger owner

-----Original Message-----

From: Schauss, Peter [mailto:peter.schauss_at_ngc.com] Sent: Friday, February 13, 2004 12:41 PM To: oracle-l_at_freelists.org
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_at_il.proquest.com] Sent: Friday, February 13, 2004 11:41 AM To: oracle-l_at_freelists.org
Subject: RE: Using a trigger to turn on tracing

ALTER SESSION.
-----Original Message-----

From: Schauss, Peter [mailto:peter.schauss_at_ngc.com] 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 =3D 'TEST' then
	 	execute immediate 'alter session set timed_statistics =3D
true';
		execute immediate 'alter session set max_dump_file_size =3D
unlimited';
		execute immediate=20
				'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: error occurred at recursive SQL level 1
ORA-01031: insufficient privileges
ORA-06512: 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_at_freelists.org 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_at_freelists.org
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_at_freelists.org
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_at_freelists.org
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
Received on Fri Feb 13 2004 - 11:59:18 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US