UNIFORM
All extents of temporary tablespaces are the same size (uniform), so this keyword is optional. However, you must specify UNIFORM in order to specify SIZE.

解决方案 »

  1.   

    创建临时表空间(本地管理方式,区的分配管理方式只能是uniform)
    create temporary tablespace xntemp
     tempfile 'd:\xntemp.ora' size 500M
     extent management local uniform size 512K
    uniform size指定表空间所有的区必须具有统一的大小
      

  2.   

    uniform size 1M和
    default storage (initial 10M next 3M pctincrease 0);
    是不能同时用的uniform size是本地管理表空间的语法default storage (initial 10M next 3M pctincrease 0);是字典管理表空间的语法,不能混用的