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: Help with sql identifying dup constraints

Re: Help with sql identifying dup constraints

From: Carel-Jan Engel <cjpengel.dbalert_at_xs4all.nl>
Date: Wed, 09 Jun 2004 23:15:28 +0200
Message-Id: <6.0.1.1.0.20040609231042.44395d20@pop.xs4all.nl>


Hi Barbara,

select table_name

, constraint_name
, constraint_type,
, search_condition
, generated

from user_constraints
where generated = 'USER NAME'
and constraint_name like 'SYS_C%'
order by table_name, constraint_name
/

might give you a good set to start with.

Regards, Carel-Jan

===
If you think education is expensive, try ignorance. (Derek Bok) ===



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 Wed Jun 09 2004 - 16:12:43 CDT

Original text of this message

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