码迷,mamicode.com
首页 > 数据库 > 详细

oracle表空间恢复

时间:2015-03-18 18:20:46      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:database   解决方案   identify   oracle   cannot   

如果误删除了一个表空间中test的数据文件test.dbf,然后下次重新启动数据库的时候发       数据库不能打开了(open),

老是报错:SQL> alter database open;

alter database open*

ERROR at line 1:

ORA-01157: cannot identify/lock data file 6 - see DBWRtrace file

ORA-01110: data file 6:‘/u01/app/oracle/oradata/orcl/test.dbf‘

解决方案:

1、 在路径/u01/app/oracle/oradata/orcl/新建一个test.dbf文件;

2、  sqlplus  / as sysdba登录数据库startup force;不过此时还会报错,没关系;

3、  执行:

SQL> alter database datafile‘/u01/app/oracle/oradata/orcl/test.dbf‘ offline drop;

Database altered.

 

4、接着执行:

SQL> startupforce

ORACLE instance started.

Total System Global Area 1570009088 bytes

Fixed Size                 2253584 bytes

Variable Size            973081840 bytes

Database Buffers         587202560 bytes

Redo Buffers               7471104 bytes

Database mounted.

Database opened.

5、经过上述的步骤,就将数据库open了。


oracle表空间恢复

标签:database   解决方案   identify   oracle   cannot   

原文地址:http://meirenyu.blog.51cto.com/5082636/1621915

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!