1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| SQL> create table dvp_perf ( a number , b varchar2(10)) ;
Table créée.
SQL>
SQL> declare
2 i number ;
3 begin
4 for i in 1..10000
5 loop
6 insert into dvp_perf values (i, 'DVP') ;
7 end loop ;
8 commit ;
9 end ;
10 /
Procédure PL/SQL terminée avec succès.
SQL> select table_name , index_name from user_indexes where table_name ='DVP_PERF' ;
aucune ligne sélectionnée
SQL>
SQL> select table_name , constraint_name , constraint_type from user_constraints where table_name =
'DVP_PERF' ;
aucune ligne sélectionnée
SQL>
SQL>
SQL> alter table dvp_perf add constraint dvp_pk primary key ( a ) ;
Table modifiée.
SQL> select table_name , index_name from user_indexes where table_name ='DVP_PERF' ;
TABLE_NAME INDEX_NAME
------------------------------ ------------------------------
DVP_PERF DVP_PK
SQL>
SQL> select table_name , constraint_name , constraint_type from user_constraints where table_name =
'DVP_PERF' ;
TABLE_NAME CONSTRAINT_NAME C
------------------------------ ------------------------------ -
DVP_PERF DVP_PK P |