-
在进行备份时配置相关参数以实现oracle数据库保护
资源介绍
④在备份时设置相关参数。
Format文件输出格式。
%d: 数据库名。
%s:备份集序号。
%p:备份块序号。
Filesperset:每个备份集中所包括的文件数。
⑤使用脚本功能。
使用脚本的目的在于为操作提供方便,操作过程和存储过程相似。
RMAN > create script 10dbackup {
2 > allocate channel c1 type disk;
3 > backup
4 > format ‘e:\dbbackup\db_% d_% s_% p.bck’
5 > (database filesperset = 2);
6 > }