ORA-23611: tablespace “string” has more than one data file ORACLE 报错 故障修复 远程处理
文档解释
ORA-23611: tablespace “string” has more than one data file
Cause: The specified tablespace had more than one data file and hence did not qualify as a simple tablespace.
Action: Choose a self-contained tablespace with a single data file, or use a procedure that supports any tablespace.
错误 ORA-23611:表空间“字符串”有多个数据文件
官方解释
ORA-23611:表空间“字符串”有多个数据文件
该错误指出在提交请求时,找到多个文件,但只允许有一个文件附加到表空间中。
常见案例
在将表空间添加到Oracle数据库时,如果此表空间有多个文件,则可能导致此错误发生。
一般处理方法及步骤
1.检查表空间,确定其中有多少文件。
2.使用ALTER TABLESPACE DROP DATAFILE子句删除所有除第一个文件以外的文件。
3.使用ALTER TABLESPACE ADD DATAFILE子句将文件重新添加到表空间中。