首页 > 代码库 > oracle12c新特性索引压缩 COMPRESS ADVANCED LOW
oracle12c新特性索引压缩 COMPRESS ADVANCED LOW
从oracle 12.1.0.2版本起,创建索引时可以通过COMPRESS ADVANCED LOW对index进行压缩
语法
create index index_name on table_name(col_name) COMPRESS ADVANCED LOW;
alter index index_name REBUILD COMPRESS ADVANCED LOW;
压缩空间对比
create table ddeng as select * from dba_objects; create index idx_ddeng on ddeng(object_id,object_name,owner); -- 暂用空间大小 SQL> select segment_name,bytes/1024/1024 from dba_segments where segment_name = ‘IDX_DDENG‘; SEGMENT_NAME BYTES/1024/1024 -------------------- --------------- IDX_DDENG 80 -- 压缩后 SQL> alter index idx_ddeng REBUILD COMPRESS ADVANCED LOW; Index altered. SQL> select segment_name,bytes/1024/1024 from dba_segments where segment_name = ‘IDX_DDENG‘; SEGMENT_NAME BYTES/1024/1024 -------------------- --------------- IDX_DDENG 22
启用COMPRESS ADVANCED LOW 在 dba_indexes.compression 值显示为Enable
Note:
Advanced index compression is not supported for bitmap indexes or index-organized tables.
Advanced index compression cannot be specified on a single column unique index.
本文出自 “专注于Oracle性能调优” 博客,请务必保留此出处http://5073392.blog.51cto.com/5063392/1572107
oracle12c新特性索引压缩 COMPRESS ADVANCED LOW
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。