码迷,mamicode.com
首页 > 数据库 > 详细

Oracle shrink table

时间:2018-10-03 22:52:49      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:语法   nbsp   迁移   asc   使用   man   索引   alter   gem   

shrink必须开启行迁移功能。

alter table table_name enable row movement ;

在oracle中可以使用alter table table_name shrink space收缩表,使用shrink有两个前提条件:

  1、表必须启用row movement

  2、表段所在表空间的段空间管理(segment space management)必须为auto

-shrink不能在segment space management manaual的表空间的段上执行

语法:

alter table <table_name> shrink space [ <null> | compact | cascade ];

alter table <table_name> shrink space compcat;

收缩表,相当于把块中数据打结实了,但会保持 high water mark;

alter table <tablespace_name> shrink space;

收缩表,降低 high water mark;

alter table <tablespace_name> shrink space cascade;

收缩表,降低 high water mark,并且相关索引也要收缩一下下。

alter index idxname shrink space;

回缩索引

Oracle shrink table

标签:语法   nbsp   迁移   asc   使用   man   索引   alter   gem   

原文地址:https://www.cnblogs.com/kawashibara/p/9738786.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!