from_now 发表于 2011-12-23 03:12

create tablespace 中的logging模式

LOGGING| NOLOGGINGspecifies the default logging attributes of all
tables, indexes, and partitions within the tablespace. LOGGING is the
default. &nbsp; <br><br>The tablespace-level logging attribute can be overridden by logging specifications at the table, index, and partition levels.&nbsp; <br><br>Only the following operations support the NOLOGGING mode:&nbsp; <br><br>DML: direct-load INSERT (serial or parallel), Direct Loader (SQL*Loader)&nbsp; <br><br>DDL:
CREATE TABLE ... AS SELECT, CREATE INDEX, ALTER INDEX ... REBUILD,
ALTER INDEX ... REBUILD PARTITION, ALTER INDEX ... SPLIT PARTITION,
ALTER TABLE ... SPLIT PARTITION, and ALTER TABLE ... MOVE PARTITION &nbsp; <br><br>In
NOLOGGING mode, data is modified with minimal logging (to mark new
extents INVALID and to record dictionary changes). When applied during
media recovery, the extent invalidation records mark a range of blocks
as logically corrupt, because the redo data is not logged. Therefore, if
you cannot afford to lose the object, you should take a backup after
the NOLOGGING operation.<br>
页: [1]
查看完整版本: create tablespace 中的logging模式