oracle 12.1.0.2 新特性高级索引压缩
1 高级的索引压缩
1.1 创建前缀压缩索引 (该方法应用于索引列重复值比较多、非唯一性的情形 非12c 新功能)
1.1.1 创建索引
SQL> create index ind_MT_AS_MSG_30_spnumber on MT_AS_MSG_30(Spnumber) ;
1.1.2 修改索引为压缩索引
SQL> alter index ind_MT_AS_MSG_30_spnumber rebuild compress;
1.1.2 修改索引为非压缩索引
SQL> alter index ind_MT_AS_MSG_30_spnumber rebuild uncompress;
1.2 创建高级压缩索引(适用于唯一跟非唯一 所以, 而且压缩比例高,性能比较好 这个功能必须是 12.1.0 或者更高的版本)
1.1.1 创建索引
SQL> create index ind_MT_AS_MSG_30_spnumber on MT_AS_MSG_30(Spnumber) compress
1 高级的索引压缩
1.1 创建前缀压缩索引 (该方法应用于索引列重复值比较多、非唯一性的情形 非12c 新功能)
1.1.1 创建索引
SQL> create index ind_MT_AS_MSG_30_spnumber on MT_AS_MSG_30(Spnumber) ;
1.1.2 修改索引为压缩索引
SQL> alter index ind_MT_AS_MSG_30_spnumber rebuild compress;
1.1.2 修改索引为非压缩索引
SQL> alter index ind_MT_AS_MSG_30_spnumber rebuild uncompress;
1.2 创建高级压缩索引(适用于唯一跟非唯一 所以, 而且压缩比例高,性能比较好 这个功能必须是 12.1.0 或者更高的版本)
1.1.1 创建索引
SQL> create index ind_MT_AS_MSG_30_spnumber on MT_AS_MSG_30(Spnumber) compress