本文根据一个实践操作的记录,详细介绍利用rman热备来创建dataguard物理Active备库;这种方式主库只需要重启一次即可,使主库具有更高的可用性!
在进行按本文档的操作之前,我们默认主数据库已经处于归档运行模式;大致流程是先配置主库的参数及做rman备份,然后在备库上装oracle软件、配置监听,不需要dbca创建数据库;然后修改备库的参数文件及进行rman恢复,之后进行测试。
环境说...
分类:
数据库 时间:
2014-12-27 23:16:24
阅读次数:
521
使用rman进行恢复--undo丢失
restore 把文件还原回去;
recover 利用日志文件重做;
关键性的文件丢失和非关键性的文件丢失(system/undo之外的丢失)
1>
删除undo文件:
[oracle@oracle ~]$ rm /u01/oracle/oradata/jadl10g/undotbs01.dbf
[oracle@oracle ~]$ sqlplu...
分类:
其他好文 时间:
2014-12-27 19:05:41
阅读次数:
229
通常见到的还原操作,都是将所有的表空间和数据还原到相同的一个时间点上,无论是否是故障恢复点。而TSPITR则是以表空间为粒度单元,单独将某个表空间内容还原到一个特定可恢复时间点上。
举一个例子:一个Oracle数据库运行在归档模式下,在夜间22点保留一份完全备份。早上8点时候,某个特定表空间上数据表(单个表独占表空间)发生一个误操作,数据损坏。要求在不伤害其他数据表数据的情况下,将表空间数据...
分类:
其他好文 时间:
2014-12-26 23:00:32
阅读次数:
277
解决方法1:先find / -name flash_recovery_area-type d 查找闪恢复空间的文件夹(D:\oracle\product\10.2.0\flash_recovery_area)手工删除里面的日志,然后在ORACLE用户下用rman进入把归档日志删除1)命令>rman ...
分类:
其他好文 时间:
2014-12-26 20:06:33
阅读次数:
109
In your database, all the tablespaces are locally managed. You started
Recovery Manager (RMAN) using recovery catalog and restored the
control file by using the following command:
RMAN> RESTORE ...
分类:
数据库 时间:
2014-12-26 14:45:11
阅读次数:
208
our database operates in ARCHIVELOGmode. The redo log files are
not multiplexed and one of the online redo logs is missing. The missi
ng redo log sequence, 230, is not archived and it contained inf...
分类:
数据库 时间:
2014-12-26 09:41:12
阅读次数:
236
You executed the following command in Recovery Manager (RMAN) aga
inst your Oracle 10g database:
RMAN> REPORT NEED BACKUP days 3;
What would be the output of this command?
A. a list of files...
分类:
数据库 时间:
2014-12-26 09:40:23
阅读次数:
160
1>只读 ---备份只读 故障 只读 还原有故障的数据文件
2>只读 ---备份只读 可写 故障 还原备份数据文件,重做recover
3>只读 ---备份可写 只读 故障 还原备份数据文件,recover
1>
进入rman,确保是否有备份的文件:
[oracle@oracle ~]$ rman target /
Recovery Manager: Release 10....
分类:
其他好文 时间:
2014-12-25 23:41:07
阅读次数:
237
You set the recovery window to seven days and the backup optimiza
tion to ON using the CONFIGURE command of Recovery Manager (RMAN). The
most recent backup of the TOOLStablespace to disk was taken o...
分类:
数据库 时间:
2014-12-25 16:31:34
阅读次数:
155
An RMAN backup job fails, displaying the following error:
ORA-19809: limit exceeded for recovery files
Your analysis shows that the Flash Recovery area is full. Which two a
ctions could you tak...
分类:
数据库 时间:
2014-12-25 10:02:40
阅读次数:
183