Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

select data from user_cons,user_constraints,user_cons_columns

yasser_egyptApr 27 2010 — edited Apr 27 2010
dear sirs, i want to select table name and its referencial tables and constraint_names and column which used in this constraints referencial
i use this select but it seems not right
select t.table_name,t.ref_name,c.constraint_name,m.column_name
from user_cons t,user_constraints c,user_cons_columns m
where
c.table_name = t.table_name
and m.table_name = c.table_name
and m.constraint_name = c.constraint_name
and constraint_type ='R'
and c.table_name like 'STK%'
order by table_name,constraint_name


please help me
yasser
This post has been answered by Manu. on Apr 27 2010
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 25 2010
Added on Apr 27 2010
4 comments
1,768 views