› Fóruns › Banco de dados Oracle › RMAN › RMAN
Vieri,
Para melhorar o teste, executa esse script depois com as alterações abaixo:
run {
allocate channel t1 type disk maxpiecesize = 50G format ‘/dba/backup/oracle/ADMBI1/data/bkp_full_%d_%t.rman’;
allocate channel t2 type disk maxpiecesize = 50G format ‘/dba/backup/oracle/ADMBI1/data/bkp_full_%d_%t.rman’;
allocate channel t3 type disk maxpiecesize = 50G format ‘/dba/backup/oracle/ADMBI1/data/bkp_full_%d_%t.rman’;
backup as compressed backupset database include current controlfile tag ‘BKP_BI_FULL_HOT’;
backup current controlfile tag ‘BKP_CTL’
format ‘/dba/backup/oracle/ADMBI1/data/bkp_ctl_%d_%t.rman’;
backup spfile tag ‘BKP_SPFILE’
format ‘/dba/backup/oracle/ADMBI1/data/bkp_spfile_%d_%t.rman’;
release channel t1;
release channel t2;
release channel t3;
}
E veja se agora vai alocar os 3 canais. Se alocar, tem uma explicação. =D
Abraços,
Rodrigo Almeida