直接在文件夹里面删除了dbf文件。

进入>sqlplus /nolog

        >connnect / as sysdba

        >startup

直接在文件夹里面删除了dbf文件。

1.关闭数据库

  SQL>shutdown immediate;

2.删除临时数据文件,模拟媒体失败

3.启动数据库,检查到文件错误

4.脱机该数据文件。

  SQL>alter database datafile '文件路径' offline frop;

5.打开数据库

  SQL>alter database open

6.启动数据库

  SQL>startup

  启动成功!

恢复 脱机文件
recover datafile 'D:\APP\MIXY\ORADATA\ORCL\SYSAUX01.DBF';

查询用户默认表空间
SELECT USERNAME,TEMPORARY_TABLESPACE FROM DBA_USERS;

删除表空间temp,但不删除其文件 用:drop tablespace temp;
删除表空间temp同时删除表空间的数据对象 用drop tablespace temp including contents;
删除表空间temp及其包含数据对象以及数据文件 用drop tablespace temp including contents and datafiles;

上一篇:oracle-整库迁移(冷备)


下一篇:ORA-01033: ORACLE initialization or shutdown in progress --手动删除表空间 DBF 后无法登陆问题