欢迎来到代码驿站!

Oracle

当前位置:首页 > 数据库 > Oracle

oracle下实现恢复一个丢失的数据文件的代码

时间:2021-11-28 11:30:48|栏目:Oracle|点击:
如果您目前拥有一个冷备份,但是缺少了其中的一个数据文件,但你目前存在所有的归档,如果您要恢复数据文件,可以参考以下的示例:  
复制代码 代码如下:

[oracle@jumper eygle]$ sqlplus "/ as sysdba" 

SQL*Plus: Release 9.2.0.4.0 - Production on Sun Aug 20 01:22:50 2006 

Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved. 

Connected to an idle instance. 

SQL> startup mount 
ORACLE instance started. 

Total System Global Area  252777592 bytes 
Fixed Size                   451704 bytes 
Variable Size             134217728 bytes 
Database Buffers          117440512 bytes 
Redo Buffers                 667648 bytes 
Database mounted. 


SQL> alter database open; 
alter database open 

ERROR at line 1: 
ORA-01157: cannot identify/lock data file 3 - see DBWR trace file 
ORA-01110: data file 3: '/opt/oracle/oradata/eygle/eygle02.dbf' 


SQL> alter database create datafile 3 as '/opt/oracle/oradata/eygle/eygle02.dbf'; 

Database altered. 

SQL> select name from v$datafile; 

NAME 
------------------------------------------------------- 
/opt/oracle/oradata/eygle/system01.dbf 
/opt/oracle/oradata/eygle/undotbs01.dbf 
/opt/oracle/oradata/eygle/eygle02.dbf 
/opt/oracle/oradata/eygle/eygle01.dbf 

SQL> alter database open; 
alter database open 

ERROR at line 1: 
ORA-01113: file 3 needs media recovery 
ORA-01110: data file 3: '/opt/oracle/oradata/eygle/eygle02.dbf' 


SQL> recover datafile 3; 
Media recovery complete. 
SQL> alter database open; 

Database altered. 

SQL> 
 

上一篇:使用geotools导入shp文件到Oracle数据库时表名带下划线问题的解决方法

栏    目:Oracle

下一篇:oracle SQL递归的使用详解

本文标题:oracle下实现恢复一个丢失的数据文件的代码

本文地址:http://www.codeinn.net/misctech/185073.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有