Hi,
There are some promblems in PL/SQL developer DDL's
PL/SQL Developer Version 9.0.4.1644
--MY case:
create table test_metadata (id number, name varchar2(20));
create index test_id_idx on test_metadata(id);
alter table test_metadata add constraint pk_meta_id primary key (id) using index...