Forum OpenACS Q&A: Response to How do you find foreign keys in Oracle?

Collapse
Posted by Jade Rubick on
If Titi's response doesn't work, this might work:
select table_name
from user_constraints
where constraint_name = 'SYS_C005133';
Of course, Michael's answer seems the best long-term solution.