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: Mladen Gogala <mladen_at_wangtrading.com>
Date: Fri, 13 Feb 2004 13:54:00 -0500
Message-ID: <20040213185400.GE2211@mladen.wangtrading.com>


Or the trigger must invoke a procedure owned by someone having 'ALTER SESSION' privilege.
On 02/13/2004 01:29:48 PM, Paul Baumgartel wrote:
> The user must have ALTER SESSION granted directly, not via a role.
>
>
> --- "Schauss, Peter" <peter.schauss_at_ngc.com> wrote:
> > 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: 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
> > -----------------------------------------------------------------
>
>
> __________________________________
> Do you Yahoo!?
> Yahoo! Finance: Get your refund fast by filing online.
> http://taxes.yahoo.com/filing.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 - 12:54:00 CST

Original text of this message

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