can't you just drop your primary key constraint and create it again?

alter table
drop constraint ;

alter table
add constraint PK_??? PRIMARY KEY(column_name);