1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| 10g SOC5> create table dvp(x number(6) not null);
Table créée.
10g SOC5> select constraint_name, constraint_type, table_name
2 from dba_constraints
3 where table_name like 'DVP';
CONSTRAINT_NAME C TABLE_NAME
------------------------------ - ------------------------------
SYS_C0099722 C DVP
1 ligne sélectionnée.
10g SOC5> alter table dvp modify x null;
Table modifiée.
10g SOC5> select constraint_name, constraint_type, table_name
2 from dba_constraints
3 where table_name like 'DVP';
aucune ligne sélectionnée |
Partager