日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

测试的时候数据库外键导致死锁_Oracle外键不加索引会引起死锁问题

發布時間:2025/3/19 25 豆豆
生活随笔 收集整理的這篇文章主要介紹了 测试的时候数据库外键导致死锁_Oracle外键不加索引会引起死锁问题 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

這篇文章主要介紹了Oracle外鍵不加索引引起死鎖的情況及解決,需要的朋友可以參考下

--創建一個表,此表作為子表

create table fk_t as select * from user_objects;

delete from fk_t where object_id is null;

commit;

--創建一個表,此表作為父表

create table pk_t as select * from user_objects;

delete from pk_t where object_id is null;

commit;

--創建父表的主鍵

alter table PK_t add constraint pk_pktable primary key (OBJECT_ID);

--創建子表的外鍵

alter table FK_t add constraint fk_fktable foreign key (OBJECT_ID) references pk_t (OBJECT_ID);

--session1:執行一個刪除操作,這時候在子表和父表上都加了一個Row-S(SX)鎖

delete from fk_t where object_id=100;

delete from pk_t where object_id=100;

--session2:執行另一個刪除操作,發現這時候第二個刪除語句等待

delete from fk_t where object_id=200;

delete from pk_t where object_id=200;

--回到session1:死鎖馬上發生

delete from pk_t where object_id=100;

session2中報錯:

SQL> delete from pk_table where object_id=200;

delete from pk_table where object_id=200

*

第 1 行出現錯誤:

ORA-00060: 等待資源時檢測到死鎖

當對子表的外鍵列添加索引后,死鎖被消除,因為這時刪除父表記錄不需要對子表加表級鎖。

--為外鍵建立索引

create index ind_pk_object_id on fk_t(object_id) nologging;

--重復上面的操作session1

delete from fk_t where object_id=100;

delete from pk_t where object_id=100;

--session2

delete from fk_t where object_id=200;

delete from pk_t where object_id=200;

--回到session1不會發生死鎖

delete from pk_t where object_id=100;

經過驗證,如果外鍵不加索引的確會出現死鎖。因此,外鍵務必添加索引。

總結

以上是生活随笔為你收集整理的测试的时候数据库外键导致死锁_Oracle外键不加索引会引起死锁问题的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。