0

FOR QUERY HIGHおよびPCTFREEオプションを使用して、パーティション内のいくつかのサブパーティションのみを圧縮する方法

私の声明は次のようになります。

alter table table_name move subpartition subpartition_name PCTFREE 10 compress for query high;  

そして、このエラーはその後発生します:

ORA-14160:this physical attribute may not be specified for a table subpartition.
4

1 に答える 1

3

サブパーティションは個別に圧縮できません。

11gR2のドキュメントでは、ヒープ構成表の次の部分が圧縮可能であると特定されています。

  • テーブル全体の場合、relational_table または object_table の physical_properties 句で
  • レンジ・パーティションの場合、 range_partitions 句の table_partition_description で
  • 複合レンジ パーティションの場合、range_partition_desc の table_partition_description
  • 複合リスト パーティションの場合、list_partition_desc の table_partition_description
  • リスト パーティションの場合、list_partitions 句の table_partition_description で
  • システムまたは参照パーティションの場合、reference_partition_desc の table_partition_description
  • ネストした表の記憶表の場合、nested_table_col_properties句で

http://docs.oracle.com/cd/E11882_01/server.112/e26088/statements_7002.htm#SQLRF01402

于 2012-11-13T12:08:02.677 に答える