Table-level constraints can't be found in table view.

The constraint test_cons can't be seen after the following:-

SQL> create table test (x number)
2 ;

Table created

SQL> alter table test add constraint test_cons UNIQUE (x);

Table altered

SQL> edit test
 
Back
Top