如果误删除了一个表空间中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了。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。