仅在Oracle 12c中,Row Store压缩高级和压缩之间有什么区别?
我在Oracle 12C中创建了一个简单的两个表,如何检查它们在压缩和性能差异方面的差异???
create table t1 ( c1 number, c2 varchar2(1) ) compress basic ;
create table t2 ( c1 number, c2 varchar2(1) ) ROW STORE COMPRESS ADVANCED;
I have created a simple two tables in Oracle 12c and how do inspect their difference in compression and performance difference???
create table t1 ( c1 number, c2 varchar2(1) ) compress basic ;
create table t2 ( c1 number, c2 varchar2(1) ) ROW STORE COMPRESS ADVANCED;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
重要的区别在于,当使用高级压缩时,您可以通过DML操作添加/更改数据,而不必解压缩数据拳头。
来自Oracle Advanced压缩白色板的提取物:12C:
The significant difference is that when the advanced compression is used, you can add/change data through DML operations without having to uncompress the data fist.
An extract from the Oracle Advanced Compression white sheet for 12c: