71
select distinct constraint_type from user_constraints;

C
-
C
P
R
U

P は主キー、R は外部キーを意味しているようですね。U と C とは何ですか?

4

2 に答える 2

76

12cR1 ドキュメントから:

C - Check constraint on a table  
P - Primary key  
U - Unique key  
R - Referential integrity  
V - With check option, on a view  
O - With read only, on a view  
H - Hash expression  
F - Constraint that involves a REF column  
S - Supplemental logging
于 2010-08-24T00:29:04.313 に答える
72
Code Description                Acts On Level
---------------------------------------------
C    Check on a table           Column
O    Read Only on a view        Object
P    Primary Key                Object
R    Referential (Foreign Key)  Column
U    Unique Key                 Column
V    Check Option on a view     Object
于 2008-10-08T16:31:28.120 に答える