码迷,mamicode.com
首页 > 数据库 > 详细

【翻译自mos文章】oracle数据库中 基本的表压缩和高级压缩之间的区别

时间:2014-11-27 18:22:53      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:basic compress   advanced compression   

基本的表压缩和高级压缩之间的区别,
摘录自mos文章Difference Between Basic Table Compression And Advanced Compression (Doc ID 1548187.1)

适用于:
Oracle Database - Enterprise Edition - Version 10.2.0.5 and later
Information in this document applies to any platform.

目标:
What is the difference between Basic Table Compression in 10g and Advanced Table Compression in 11gR2?

方法:
user_tables 或者dba_tables视图中的COMPRESS_FOR列,在11.2和 11.1版本中,返回的值是不同的。
在11.2中,该列的返回值是 BASIC or OLTP
在11.1中,该列的返回值是  DIRECT LOAD ONLY and FOR ALL OPERATIONS

使用alter table...move...compress, alter index...rebuild...compress 命令,此时是使用的基本的压缩,除非使用高级压缩的授权。

基本的压缩是在block级别工作,将数据块上的重复的bit信息 挪动(remove)到block header中,
并每个block上存储这些信息一次。请注意,并不是block上出现一次就存储一次。这样的机制允许在一个block之内存储2倍,3倍,4倍甚至更多的数据。

基本的压缩仅仅在如下情况下才有效:
direct path operations--比如 insert /*+APPEND*/, alter table t move, create table as select, sqlldr direct=y
基本的压缩并不阻止你使用正常的nsert/update/delete语句。----这就是说:这些dml语句会产生(result in)一些非压缩数据。
一个表中可以存在压缩的blocks和没压缩的blocks--这是能正常工作的。
There are restrictions as to what you can do with a basic compressed table as far as dropping columns and the like.

在Oracle 11gR1 以及更新(above )版本中,有了 advanced compression option。
这个option允许 normal, conventional path operations 这些操作被压缩。
因此,一个application可以在不使用direct path operations的情况下,以压缩的格式保存数据。

Restrictions on Table Compression Table compression is subject to the following restrictions:


COMPRESS FOR OLTP and COMPRESS BASIC are not supported for tables with more than 255 columns.
As "COMPRESS FOR OLTP" is part of Advanced compression, the restriction holds good for it as well.

You need separate license to use 11g Advanced Compression.

For more information on Advanced Compression, see the OTN site.







【翻译自mos文章】oracle数据库中 基本的表压缩和高级压缩之间的区别

标签:basic compress   advanced compression   

原文地址:http://blog.csdn.net/msdnchina/article/details/41550433

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!