《转载》oracle建表时表空间的一些参数pctfree initrans maxtrans storage的含义

原文地址:

oracle建表时表空间的一些参数pctfree initrans maxtrans storage的含义_qq_40435659的博客-CSDN博客
https://blog.csdn.net/qq_40435659/article/details/84860723

 

 

 

表空间:

https://www.iteye.com/blogs/tag/%E8%A1%A8%E7%A9%BA%E9%97%B4

 

create table X_SMALL_AREA
(
  idx_id             NUMBER(20) not null,
   pss_idx_id NUMBER(20),
   update_log    VARCHAR2(512),
   update_date    DATE,
   constraint PK_PSS_LOG primary key (idx_id),
   constraint FK_PSS_LOG foreign key (pss_idx_id)
      references POFS_SERIAL_SYSTEM (idx_id)
)
tablespace TBSL_SDDQ --表段X_SMALL_AREA放在表空间TBSL_SDDQ中
  pctfree 10 --块保留10%的空间留给更新该块数据使用
  initrans 1 --初始化事务槽的个数
  maxtrans 255 --最大事务槽的个数
  storage --存储参数
  (
    initial 64k --区段(extent)一次扩展64k
    minextents 1 --最小区段数
    maxextents unlimited --最大区段无限制
  );

你可能感兴趣的:(Oracle)