ORA-03284: datafile or tempfile string is not a member of tablespace string ORACLE 报错 故障修复 远程处理

文档解释

ORA-03284: datafile or tempfile string is not a member of tablespace string

Cause: The specified datafile or tempfile did not belong to the tablespace that the object resides in.

Action: Retry the option with the correct datafile or tempfile.

ORA-03284 错误是属于 Oracle 数据库错误,指明指定的数据文件或临时文件不是指定表空间的成员。

官方解释

ORA-03284 表示当前指定文件不是指定表空间中的成员。

常见案例

当应用程序尝试将某文件作为表空间的成员时引发ORA-03284错误,但文件实际上不是表空间的一部分,此时就会出现该错误。

正常处理方法及步骤

1. 确认指定的文件是否确实属于该表空间,可以使用如下查询语句查看:

SELECT * FROM dba_data_files WHERE tablespace_name = ”;

2. 如果指定的文件不存在于表空间中,则需要将文件添加到表空间中,可以使用如下语句执行此操作:

ALTER TABLESPACE ADD DATAFILE ‘//’ SIZE M REUSE;


数据运维技术 » ORA-03284: datafile or tempfile string is not a member of tablespace string ORACLE 报错 故障修复 远程处理