rman 是要数据库运行在归档模式下(archive log)具体rman的配置如果是想备份到硬盘上要在分配通道时指定通道为disk类型。
run
{
allocate channel c1 type disk connect"sys/sys@linkserver";
backup full format 'd:\backup_full_%u_%s_%p' database;
sql 'alter system archive log current';
release channel c1;
}