①创建表空间

CREATE TABLESPACE tbs_02 
   DATAFILE 
'diskb:tbs_f5.dat' SIZE 100M
   AUTOEXTEND 
ON NEXT 100M MAXSIZE 2000M;

 

②修改表空间

alter database datafile '/vol01/app/oracle/oradata/rms/sysaux01.dbf' autoextend on next 100M maxsize 3000M;

 

 ③添加表空间文件
alter tablespace SYSAUX add datafile '/vol01/app/oracle/oradata/rms/sysaux02.dbf' 
size 100M autoextend 
on next 10M maxsize 2000M;

 

④添加分区

1,

create tablespace g200910 datafile 'D:\oracle\product\10.1.0\oradata\BMPS2\g200910.dbf' size 100m 
      autoextend 
on next 100m maxsize 3000m;
create tablespace g200911 datafile 'D:\oracle\product\10.1.0\oradata\BMPS2\g200911.dbf' size 100m 
      autoextend 
on next 100m maxsize 3000m;

相关文章:

  • 2022-02-08
  • 2021-06-21
  • 2021-05-29
  • 2022-12-23
  • 2022-01-31
  • 2021-12-06
  • 2022-02-04
猜你喜欢
  • 2021-12-12
  • 2022-01-01
  • 2022-12-23
  • 2022-12-23
  • 2022-01-13
  • 2021-10-22
相关资源
相似解决方案