ORA-01120: cannot remove online database file string
Cause: Attempting to drop a datafile when it is online
Action: Take file offline before dropping.
ORA-01120错误信息提示无法移除在线的数据库文件。
ORA-01120 represents an attempt to remove an online datafile from the database. An online datafile can only be taken offline.
ORA-01120常常会出现在删除数据库文件或者管理文件时出现,因为Oracle不允许在线数据库文件被删除。
1. 确保当前数据库处于可恢复状态。
2. 使用ALTER DATABASE DATAFILE或ALTER TABLESPACE OFFLINE指令将该文件置为OFFLINE状态。
3. 通过DROP TABLESPACE或DROP DATAFILE删除数据库文件。