共计 1482 个字符,预计需要花费 4 分钟才能阅读完成。
丸趣 TV 小编给大家分享一下 RMAN 中如何使用 set 命令,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
一、set newname 命令:
If you are restoring some data files to new locations, then execute RESTORE DATABASE and RECOVER DATABASE sequentially in a RUN command. Use the SET NEWNAME to rename data files, as described in Restoring Datafiles to a Nondefault Location .
如果要将某些数据文件还原到新位置,请在 RUN 命令中按顺序执行 RESTORE DATABASE 和 RECOVER DATABASE。使用 SET NEWNAME 重命名数据文件,如 将数据文件还原到非默认位置 中所述。
The following example restores the database, specifying new names for three of the data files, and then recovers the database:
RUN
{
SET NEWNAME FOR DATAFILE 2 TO /disk2/df2.dbf
SET NEWNAME FOR DATAFILE 3 TO /disk2/df3.dbf
SET NEWNAME FOR DATAFILE 4 TO /disk2/df4.dbf
RESTORE DATABASE;
SWITCH DATAFILE ALL;
RECOVER DATABASE;
}
二、Restoring Datafiles to a Nondefault Location(将数据文件还原到非默认位置)
If you cannot restore data files to their default locations, then you must update the control file to reflect the new locations of the data files. Use the RMAN SET NEWNAME command within a RUN command to specify the new file name. Afterward, use a SWITCH command, which is equivalent to using the SQL statement ALTER DATABASE RENAME FILE, to update the names of the data files in the control file. SWITCH DATAFILE ALL updates the control file to reflect the new names for all data files for which a SET NEWNAME has been issued in a RUN command.
如果无法将数据文件恢复到其默认位置,则必须更新控制文件以反映数据文件的新位置。在 RUN 命令中使用 RMAN SET NEWNAME 命令来指定新的文件名。之后,使用一个 SWITCH 命令(相当于使用 SQL 语句 ALTER DATABASE RENAME FILE)来更新控制文件中数据文件的名称。 SWITCH DATAFILE ALL 将更新控制文件,以反映在 RUN 命令中为 SET NEWNAME 发出的所有数据文件的新名称。
以上是“RMAN 中如何使用 set 命令”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注丸趣 TV 行业资讯频道!