Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Modify Primary Key
>>> <manoj.gurnani_at_polaris.co.in> 10/14/05 10:13am >>>
Hi,
What are different steps to be followed in modifying a
primary
key(PK1) to exclude last primary key column from a list of primary key
columns.
assuming referential integrity constraints exists on primary key in
diff
tables.
give necesary sql syntax to perform the tasks .
Thanks
Manoj
Hi Manoj,
you'd need to drop the foreign key constraints from *all* the child tables whihc reference the primary key you wish to change, then drop the primary key constraint from the table in question. Once you've done that, rebuild the primary key and then the foreign key's again.
Something like :
alter table child_1 drop constraint fk_1; alter table child_2 drop constraint fk_2; alter table child_3 drop constraint fk_3;alter table parent drop constraint pk_1;
alter table parent add constraint pk_1 primary key (a,b,c);
alter table child_1 add constraint fk_1 foreign key (x,y,z) references parent (a,b,c);
and so on.
Cheers,
Norman.
Norman Dunbar.
Contract Oracle DBA.
Rivers House, Leeds.
Internal : 7 28 2051
External : 0113 231 2051
Information in this message may be confidential and may be legally privileged. If you have received this message by mistake, please notify the sender immediately, delete it and do not copy it to anyone else.
We have checked this email and its attachments for viruses. But you should still check any attachment before opening it.
We may have to make this message and any reply to it public if asked to under the Freedom of Information Act, Data Protection Act or for litigation. Email messages and attachments sent to or from any Environment Agency address may also be accessed by someone other than the sender or recipient, for business purposes.
If we have sent you information and you wish to use it please read our terms and conditions which you can get by calling us on 08708 506 506. Find out more about the Environment Agency at www.environment-agency.gov.uk
-- http://www.freelists.org/webpage/oracle-lReceived on Fri Oct 14 2005 - 07:41:30 CDT
![]() |
![]() |