在主鍵中增加一個欄位出現ORA-00955異常

來源:互聯網
上載者:User

在主鍵中增加一個欄位出現ora-00955錯誤

將表mytable加上一個id2欄位,並使其成為主鍵之一,原主鍵名為:mytable_pk,欄位為(id),步驟如下:

1.刪除主鍵:

alter table mytable drop constraint mytable_pk cascade;

2.增加欄位

alter table mytable add id2 varchar2(6);

3.設定新增欄位初值

update mytable set id2='sx';

4.將新增欄位改為非空

alter table mytable modify id2 not null;

5.增加主鍵約束

ALTER TABLE mytable ADD CONSTRAINT mytable_PK PRIMARY KEY (id2,id);

ERROR 位於第 1 行:

ORA-00955: 名稱已由現有對象使用

解決辦法:

由於原表可能存在同名索引,因此先執行以下語句:

drop index mytable_pk;

再執行

ALTER TABLE mytable ADD CONSTRAINT mytable_PK PRIMARY KEY (id2,id);即可

ORA-01172、ORA-01151錯誤處理

ORA-00600 [2662]錯誤解決

ORA-01078 和 LRM-00109 報錯解決方案

ORA-00471 處理方法筆記

ORA-00314,redolog 損壞,或丟失處理方法

ORA-00257 歸檔日誌過大導致無法儲存的解決辦法

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.