add batch remove batch split batch comment selection show hidden batches hide batch highlight batch
db<>fiddle
donate feedback about
By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
create table TABLE_1 (ID_1 number)
alter table TABLE_1 add constraint pk_1 primary key(ID_1)
using index
-- tablespace schema1_ind
exceptions into junk;
alter table TABLE_1 drop constraint pk_1
insert into TABLE_1(ID_1) values (42)
1 rows affected
alter table TABLE_1 add constraint pk_1 primary key(ID_1)
using index
-- tablespace schema1_ind
exceptions into junk;
alter table TABLE_1 drop constraint pk_1
insert into TABLE_1(ID_1) values (42)
1 rows affected
alter table TABLE_1 add constraint pk_1 primary key(ID_1)
using index
-- tablespace schema1_ind
exceptions into junk;
ORA-02445: Exceptions table not found