Which system table contains information on constraints on all the tables created?

USER_CONSTRAINTS

Showing Answers 1 - 7 of 7 Answers

malapati

  • Oct 8th, 2008
 

desc  user_constraints;

to see constraints on a particular table like emp
 

 select  constraint_name,constraint_type,table_name  from  user_constraints;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions