index與nologging

csbin發表於2014-04-03

在create index ... nologging 和 alter index ... rebuild nologging時,nologging會生效。
在後續DML操作時,會生成redo log。雖然index設定為nologging

在臨時表上的索引也是一樣會產生undo。

select tablespace_name,
       status,
       trunc(sum(blocks) * 8 / 1024) as size_m,
       count(*) undo_extent_num
  from dba_undo_extents
 group by tablespace_name, status
 order by 1;

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

相關文章