如何在现有的表空间中添加数据文件

由于对ORACLE数据库的不了解,一开始仅用了一个数据文件对应一个表空间,但是很快这个文件就达到32GB的上限,因此,想更改以前配置,添加新的数据文件。我的硬盘700个GB
一开始创建表空间使用的语句是:
  create tablespace sample datafile '/usr/local/Oracle/oradata/ora9i/sample01.dbf' size 2000M autoextend on next 500M MAXSIZE UNLIMITED DEFAULT storage(initial 100M NEXT 100M MINEXTENTS 1 maxextents unlimited pctincrease 0);

现在想添加新数据文件,这个SQL如何写?
还要把autoextend这个设置去掉,这个SQL又怎么写呢?
alter tablespace <tablespace> add datafile '/dev/roratscm4lv' size 2000m autoextend off
alter tablespace sample add atafile '/usr/local/Oracle/oradata/ora9i/sample02.dbf' size 2000M autoextend off;

你可能感兴趣的:(oracle,sql,数据库)