Oracle自动备份数据库的三种方式
作者:人工智能 来源:IT科技 浏览: 【大中小】 发布时间:2025-11-05 08:59:14 评论数:

自动种方复制$>cat backup.rcv connect target sys/password rcvcat rman/rman@localname; run{ allocate channel c1 type disk; allocate channel c2 type disk; allocate channel c3 type disk; backup fileaperset 3 format ‘/u01/oradata/backup/arch%u_%s_%p’ archivelog all delete input; release channel c1; release channel c2; release channel c3; } 1.2.3.4.5.6.7.8.9.10.11.12.
