仅在Oracle 12c中,Row Store压缩高级和压缩之间有什么区别?

发布于 2025-02-13 13:24:35 字数 220 浏览 3 评论 0原文

我在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧瑾黎汐 2025-02-20 13:24:35

重要的区别在于,当使用高级压缩时,您可以通过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:

"The benefits of Advanced Row Compression go beyond just on-disk
storage savings. One significant advantage is Oracle’s ability to read
compressed blocks (data and indexes) directly, in memory, without
uncompressing the blocks."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文