rman clone NID 新创建数据文件从0开始恢复

How to clone/duplicate a database with added datafile with no backup

Oracle Database - Enterprise Edition - Version 9.2.0.1 to 10.2.0.4 [Release 9.2 to 10.2]

Information in this document applies to any platform.

GOAL

How can I clone/duplicate a database and change it's name if a datafile backup is missing. Archivelog files are available for recreating the datafile using 'alter database create datafile'.

I.e., a datafile was added to the database, but not yet backed up. Archive files are available to recreate this datafile. How can a clone/duplicate database be created in this scenario?

Issues to consider:

  1. The RMAN duplicate command will want to create a new controlfile. However, the new datafile will not be added to the controlfile.

  2. If a new controlfile is created with a database name change, the datafile cannot be added after the fact.

  3. You cannot create a datafile (using alter database) if that datafile is not listed in the controlfile.

SOLUTION

You will not be able to use the RMAN duplicate in this scenario. The RMAN duplicate command would fail with errors on the newly added datafile, like:

ORA-01503: CREATE CONTROLFILE failed

ORA-01565: error in identifying file '/<path>/<filename>'

ORA-27041: unable to open file

OSD-04002: unable to open file

O/S-Error: (OS 2) The system cannot find the file specified.

Another possibility would be errors like:

RMAN-03002: failure of Duplicate Db command at 03/22/2007 10:16:22

RMAN-03015: error occurred in stored script Memory Script

ORA-00283: recovery session canceled due to errors

RMAN-11003: failure during parse/execution of SQL statement: alter database recover logfile '/<path>/<archivelog_name>'

ORA-00283: recovery session canceled due to errors

ORA-01244: unnamed datafile(s) added to controlfile by media recovery

ORA-01110: data file 93: '/<path>/<filename>'

NOTE: In Oracle10g, RMAN will create the datafiles on recovery, so this may not be an issue.

NOTE: The same issue can apply to creating a duplicate database for standby, when datafiles are added to the primary after the backup.

Instead, you MUST use a current controlfile of the target database, to create the clone. Then the database name/DBID can be changed using the NID utility.

STEPS:

NOTE: Target database must be shutdown if the clone is created on the same server.

  1. copy production controlfile in the clone location.

  2. startup mount clone database

  3. select name from v$datafile

-- issue 'alter database rename file .... to .....; /* this renames the datafile location. It is

must be issued for every datafile existing - thus missing datafile will not be included in this

rename.

  1. select name from v$logfile

-- issue ''alter database rename file .... to .....; /* this rename will place the redo log files

in the proper location when clone database is opened.

  1. issue:

alter database create datafile AS;

  1. Restore the database

  2. recover database using backup controlfile until cancel;

-- apply all archives you have

  1. alter database open resetlogs;

  2. shutdown database

  3. startup mount

  4. exit sql and issue at the operating system:

-- nid TARGET=SYS/<PASSWORD> DBNAME SETNAME=YES

/* NOTE: If you plan to register this database in RMAN the dbid must also be changed using the NID utility */

  1. shutdown database

  2. edit init.ora changing db_name parameter

  3. startup cloned database

  4. verify name change:

select name from v$database

show parameter db_name

相关推荐
深蓝海拓5 分钟前
Pyside6(PyQT5)中的QTableView与QSqlQueryModel、QSqlTableModel的联合使用
数据库·python·qt·pyqt
C嘎嘎嵌入式开发1 小时前
什么是僵尸进程
服务器·数据库·c++
Yeats_Liao3 小时前
Navicat 导出表结构后运行查询失败ERROR 1064 (42000): You have an error in your SQL syntax;
数据库·sql
明月看潮生4 小时前
青少年编程与数学 02-007 PostgreSQL数据库应用 15课题、备份与还原
数据库·青少年编程·postgresql·编程与数学
明月看潮生4 小时前
青少年编程与数学 02-007 PostgreSQL数据库应用 14课题、触发器的编写
数据库·青少年编程·postgresql·编程与数学
加酶洗衣粉9 小时前
MongoDB部署模式
数据库·mongodb
Suyuoa9 小时前
mongoDB常见指令
数据库·mongodb
添砖,加瓦9 小时前
MongoDB详细讲解
数据库·mongodb
Zda天天爱打卡9 小时前
【趣学SQL】第二章:高级查询技巧 2.2 子查询的高级用法——SQL世界的“俄罗斯套娃“艺术
数据库·sql
我的运维人生9 小时前
MongoDB深度解析与实践案例
数据库·mongodb·运维开发·技术共享