Re: [PMX:##] Re: cannot disable or drop the ON DATABASE trigger !

2003-07-11 Thread Jared Still
t; > > > > > > > "rahul sharma" <[EMAIL PROTECTED]> > > Sent by: [EMAIL PROTECTED] > > 07/03/2003 03:40 AM > > Please respond to ORACLE-L > > > > > > To: Multiple recipients of list ORACLE-L > > &l

Re[2]: (solved?) cannot disable or drop the ON DATABASE trigger !

2003-07-06 Thread Robert Eskridge
nal Message- >> > > > Sent: Thursday, July 03, 2003 1:39 PM >> > > > To: Multiple recipients of list ORACLE-L >> > > > >> > > > >> > > > >> > > > At first glance it appears that you have created a self

Re: (solved?) cannot disable or drop the ON DATABASE trigger !

2003-07-06 Thread Rachel Carmichael
recipients of list ORACLE-L > > > > > > > > > > > > > > > > At first glance it appears that you have created a self > referencing > > > > trigger. > > > > > > > > You can't drop it, because dropping

(solved?) cannot disable or drop the ON DATABASE trigger !

2003-07-06 Thread rahul
it appears that you have created a self referencing > > > trigger. > > > > > > You can't drop it, because dropping it fires the trigger. > > > > > > Check metalink, open a TAR, etc. > > > > > > Jared > > > > > > &g

(solved?) cannot disable or drop the ON DATABASE trigger !

2003-07-06 Thread rahul
it appears that you have created a self referencing > > > trigger. > > > > > > You can't drop it, because dropping it fires the trigger. > > > > > > Check metalink, open a TAR, etc. > > > > > > Jared > > > > > > &g

Re: [PMX:##] Re: cannot disable or drop the ON DATABASE trigger !

2003-07-05 Thread Jared Still
etalink, open a TAR, etc. > > > > Jared > > > > > > > > > > > > "rahul sharma" <[EMAIL PROTECTED]> > > Sent by: [EMAIL PROTECTED] > > 07/03/2003 03:40 AM > > Please respond to ORACLE-L > > > > > >

Re: [PMX:##] Re: cannot disable or drop the ON DATABASE trigger !

2003-07-04 Thread Mladen Gogala
TECTED] 07/03/2003 03:40 AM Please respond to ORACLE-L To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> cc: Subject:cannot disable or drop the ON DATABASE trigger Help list... i have created the following in 8.1.5 instance CREATE OR REPLACE

RE: [PMX:##] Re: cannot disable or drop the ON DATABASE trigger !

2003-07-04 Thread Jamadagni, Rajendra
Title: RE: [PMX:##] Re: cannot disable or drop the ON DATABASE trigger This will teach you that you should be _very_ careful when dealing with sys schema. what's that parameter to disable sys triggers ?? 1. Call OWS 2. If this is production DB, keep your resume ready.

Re: cannot disable or drop the ON DATABASE trigger !!!!

2003-07-03 Thread Jared . Still
e respond to ORACLE-L To: Multiple recipients of list ORACLE-L <[EMAIL PROTECTED]> cc: Subject: cannot disable or drop the ON DATABASE trigger Help list... i have created the following in 8.1.5 instance CREATE OR REPLACE TRIGGER DDL_TRIGGER BEFORE

Re: cannot disable or drop the ON DATABASE trigger !!!!

2003-07-03 Thread Jose Luis Delgado
Are you sure that you created the trigger on sys schema? with the sys user? I got something similar when, by mistake, I created a logon trigger on another schema... with another username I whould check: > select owner, object_name, object_type, status > from dba_objects > where object_name = 'DDL

cannot disable or drop the ON DATABASE trigger !!!!

2003-07-03 Thread rahul sharma
Help list... i have created the following in 8.1.5 instance CREATE OR REPLACE TRIGGER DDL_TRIGGER BEFORE CREATE OR ALTER OR DROP ON DATABASE BEGIN null; END; / and now i cannot drop or disable this trigger ERROR at line 1: ORA-04045: errors during recompilation/revalidation of SYS.