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

Home -> Community -> Usenet -> c.d.o.server -> Re: Exporting Triggers

Re: Exporting Triggers

From: <cdos_jtommaney_at_comcast.net>
Date: 10 Feb 2005 07:23:08 -0800
Message-ID: <1108048988.117261.74150@o13g2000cwo.googlegroups.com>


A couple of self-checking scripts you can run to see what might be happening:

select owner, object_name, object_type

	from dba_objects
	where object_name like '%DISTINCT_RUNS%'
	   or object_name like '%DISTINCT_BLOCKS%';

select * from dba_triggers
	where trigger_name in ('TR_DISTINCT_BLOCKS','TR_DISTINCT_RUNS');
Received on Thu Feb 10 2005 - 09:23:08 CST

Original text of this message

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