DATABASE ADD DATAFILE) with the same name and get error message:
ORA-1537 (datafile already exists) even though you have offline dropped it.
ORA-01537: "cannot add data file '%s' - file already part of database"
Cause: During CREATE or ALTER TABLESPACE, a file being added is already part of the database.
Action: Use a different file name.
ORA-00376: "file %s cannot be read at this time"
Cause: attempting to read from a file that is not readable. Most likely
the file is offline.
Action: Check the state of the file. Bring it online
Solution Description
--------------------
Before proceeding, see Note 111316.1 How to 'DROP' a Datafile from a
Tablespace.
If a tablespace has only one datafile then dropping the tablespace will remove details of the datafile from the data dictionary.
If a tablespace has more than one datafile, then to remove the datafile, the tablespace must be dropped and recreated having exported any data that needs to be retained.
To remove details of the datafile from the Data Dictionary:
1) Export the entire tablespace contents.
2) Drop the tablespace, including contents.
3) Rebuild the tablespace with the datafiles you want it to contain.
4) Import the data back in.
Explanation
-----------
The Data Dictionary still contains information that this datafile
exists. Offline drop of a datafile does not remove it from the Data
Dictionary.
答:出现”错误ORA-01537 该文件已经是数据库的一部分“,表名创建语句中使用的datafile名已经存在并且被使用。修改语句中的datafile明,即可解决问题。
创建表空间的语句create tablespace your_tablespace_name datafile'......' size .... ;
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)