|
|
BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
PL/SQL Release 10.2.0.1.0 - Production
CORE 10.2.0.1.0 Production
TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production
SQL> alter tablespace ll drop datafile 'd:ll.dbf';
alter tablespace ll drop datafile 'd:ll.dbf'
*
第 1 行出现错误:
ORA-03261: 表空间 LL 只有一个文件
SQL> alter tablespace ll drop datafile d:ll.dbf;
alter tablespace ll drop datafile d:ll.dbf
*
第 1 行出现错误:
ORA-02236: 文件名无效
SQL> alter tablespace ll drop datafile 'd:ll.dbf';
alter tablespace ll drop datafile 'd:ll.dbf'
*
第 1 行出现错误:
ORA-03261: 表空间 LL 只有一个文件 |
|