Oracle 11gR2上遇到blocking txn id for DDL等待事件,11gr2txn
本文是原創文章,轉載請註明出處:http://blog.csdn.net/msdnchina/article/details/44726875
在最近處理的一個案例(11.2.0.4版本的oracle db)中,遇到了blocking txn id for DDL 這個等待事件。
下面來說一下當時的操作:
create index idx_tab_1 on table_name (column_name) tablespace xxx online;
如上建立索引的操作用了17分鐘零7秒才完成。 之後我產生該時間段的awr報告,截取top10 等待事件如下:
blocking txn id for DDL 的wait time是1023.1秒 ,17分鐘零7秒 =1027秒,也就是說,當時該create index語句的絕大多數時間都在等待。
後來又產生了該時間段的ash報告,在ash報告中,也能清楚的看到 create index操作的等待事件是blocking txn id for DDL,如下:
在mos文章Alter Table Add Column Command Hangs With Wait Event 'blocking txn id for DDL' (文檔 ID 1553725.1)中,清楚的說明了該等待事件:
原文如下:
DDL commands require exclusive locks on internal structures. If these locks are not available, the commands return with an "ORA-00054: resource busy" error message.On Oracle 11.2 instead of ora-54, the ALTER TABLE statement will not error out immediately. Instead, it waits indefinitely.Prior to 11g, if these locks are not available, the DDL command will fail with an "ORA-00054: resource busy" error message.
翻譯如下:
DDL命令需要在內部結構上的獨佔鎖定。如果這些鎖不能獲得,DDL命令會失敗,並返回"ORA-00054: resource busy" 錯誤資訊。
在Oracle 11.2中,取代了ora-54,alter table語句 不會立即返回錯誤,而是會無限期的等待。
在11g之前,如果這些鎖不能獲得,DDL命令會失敗,並返回"ORA-00054: resource busy" 錯誤資訊。