Jonathan Taylor
Member²
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
SQL> create table test (x number)
2 ;
Table created
SQL> alter table test add constraint test_cons UNIQUE (x);
Table altered
SQL> edit test