oracle reamrk

在表上频繁的update和delete的操作会导致索引出现很多空间碎片,通过rebuild index,可以回缩空间碎片,并提供查询效率

DELETE TABLE里大量的数据后,要做一下REORG才能释放空间

alter table tablename move [tablespace tablespacename];
(这时table上的索引会失效,需要rebuild)

 

RUNSTATS need set first

 

partitioning

http://wenku.baidu.com/view/a1ece7758e9951e79b8927a6.html

ORACLE的分区(Partitioning Option)是一种处理超大型表的技术。(的大小超过1.5GB-2GB,或对于OLTP系统,表的记录超过1000万)

range partitioning, hash partitioning, list partitioning, composite partitioning; local index, global index

 

扫描

http://tech.hexun.com/2009-05-07/117452594.html

 

你可能感兴趣的:(oracle)