zoukankan      html  css  js  c++  java
  • Oracle INITRANS和MAXTRANS

    create table A1
    (
      ID INTEGER
    )
    tablespace TEST_DATA
      pctfree 10
      pctused 40
      initrans 1
      maxtrans 255
      storage
      (
        initial 1
        next 1
        minextents 1
        maxextents unlimited
        pctincrease 0
      );
    
    INITRANS: 预先决定每个块头需要拥有的ITL条目,比如,INITRANS值设定为10,则为10个同时进行的事务提供空间。
    
    MAXTRANS:决定最多允许的ITL条目数。若MAXTRANS值设定为50,则最多允许50个同时事务。MAXTRANS的缺省值是255,Oracle 10g开始MAXTRANS定位255.
    
    即,即便指定了MAXTRANS的值,Oracle也会无视这些值,一直使用255.
    SQL> create table A2
    (
      ID INTEGER
    )
    tablespace TEST_DATA
      pctfree 10
      pctused 40
      initrans 100
      maxtrans 999
      storage
      (
        initial 1
        next 1
        minextents 1
        maxextents unlimited
        pctincrease 0
      );  2    3    4    5    6    7    8    9   10   11   12   13   14   15   16   17  
      maxtrans 999
               *
    ERROR at line 9:
    ORA-02209: invalid MAXTRANS option value
    
    提示maxtrans 999不正确,
    
    SQL> create table A2
    (
      ID INTEGER
    )
    tablespace TEST_DATA
      pctfree 10
      pctused 40
      initrans 100
      maxtrans 256
      storage
      (
        initial 1
        next 1
        minextents 1
        maxextents unlimited
        pctincrease 0
      );  2    3    4    5    6    7    8    9   10   11   12   13   14   15   16   17  
      maxtrans 256
               *
    ERROR at line 9:
    ORA-02209: invalid MAXTRANS option value
    
    经测试maxtrans 不能超过255
    SQL> create table A2
    (
      ID INTEGER
    )
    tablespace TEST_DATA
      pctfree 10
      pctused 40
      initrans 100
      maxtrans 200
      storage
      (
        initial 1
        next 1
        minextents 1
        maxextents unlimited
        pctincrease 0
      );  2    3    4    5    6    7    8    9   10   11   12   13   14   15   16   17  
    
    Table created.
    
    SQL> select owner,table_name,INI_TRANS,MAX_TRANS from dba_tables where owner='TEST' and  table_name='A2';
    
    OWNER			       TABLE_NAME		       INI_TRANS  MAX_TRANS
    ------------------------------ ------------------------------ ---------- ----------
    TEST			       A2				     100	255
    
    当MAXTRANS的值不是255事,Oracle会无视这些值,一直使用255.

  • 相关阅读:
    关于 iOS 证书,你必须了解的知识
    Spark踩坑记:共享变量
    Python 操作 MySQL 的正确姿势
    【黑客浅析】像黑客一样思考
    利用 Flask+Redis 维护 IP 代理池
    程序员的江湖:从黑木崖到回龙观
    [NM 状态机1] Application状态机详解
    Hadoop 2.0 编译问题小结
    Yarn上的几个问题整理
    Yarn中如何生成状态机图
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13352214.html
Copyright © 2011-2022 走看看