重庆思庄Oracle、Redhat认证学习论坛
标题:
12.2针对 oltp环境表的压缩一个变化
[打印本页]
作者:
郑全
时间:
2019-2-19 15:54
标题:
12.2针对 oltp环境表的压缩一个变化
在 12.2之前,我们要对一个oltp环境的表进行压缩,语法为 : create table xxx compress for oltp;
在12.2,这个语法可以使用,但推荐使用另外的方式:
create table emp
(empid number,
last_name varchar2(20)
)
row store compress ADvanced;
验证结果:
select table_name,compression,compress_for from user_tables where table_name like 'EMP%'
TABLE_NAME COMPRESS COMPRESS_FOR
------------------------------ -------- ------------------------------
EMP ENABLED ADVANCED
欢迎光临 重庆思庄Oracle、Redhat认证学习论坛 (http://bbs.cqsztech.com/)
Powered by Discuz! X3.2