點陣圖索引導致的會話阻塞問題(p7)

cnhtm發表於2010-05-20

Oracle9i&10g程式設計藝術:深入資料庫體系結構
第一章 開發成功的Oracle應用
點陣圖索引導致的會話阻塞問題(p7)

在一個視窗中完成如下操作:

scott@CNHTM> create table t(processed_flag varchar2(1));

Table created.

scott@CNHTM> create bitmap index t_idx on t(processed_flag);

Index created.

scott@CNHTM> insert into t values('N');

1 row created.

scott@CNHTM>

開啟另一個視窗,進行如下操作:

scott@CNHTM> insert into t values('N');

這條語句就會“掛起”,直到在第一個會話中發出commit為止。

--end--

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22049049/viewspace-1033768/,如需轉載,請註明出處,否則將追究法律責任。

相關文章