elvisrn 0 Denunciar post Postado Julho 27, 2006 Pessoal estou tentando fazer backup usando o rman sendo que executei os seguintes passos: Primeiro registrei o Database. RMAN>Register database; depois ao tentar efetuar o backup apareceu o seguinte erro: RMAN> run{ 2> allocate channel ch_1 device type disk format 'c:\backup\U%'; 3> backup database; 4> release channel ch_1; 5> } allocated channel: ch_1 channel ch_1: sid=15 devtype=DISK Starting backup at 27-JUL-06 channel ch_1: starting full datafile backupset channel ch_1: specifying datafile(s) in backupset including current SPFILE in backupset including current controlfile in backupset released channel: ch_1 RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: =========================================================== RMAN-03009: failure of backup command on ch_1 channel at 07/27/2006 15:27:20 ORA-19602: cannot backup or copy active file in NOARCHIVELOG mode O que estaria causando esse erro? Valeu! http://forum.imasters.com.br/public/style_emoticons/default/thumbsup.gif Compartilhar este post Link para o post Compartilhar em outros sites
Ceza 0 Denunciar post Postado Julho 28, 2006 Acho q é porque seu banco está no modo NOARCHIVELOG. abra o banco no modo mount. E altere para ARCHIVELOG. Compartilhar este post Link para o post Compartilhar em outros sites
alphamek 2 Denunciar post Postado Julho 28, 2006 Na verdade não precisa passar para ARCHIVE LOG, apenas deixe o banco em MOUNT!! faça: SQL > shutdown immediate; ... SQL > startup mount; E rode o script do RMAN, como o backup é COLD, tem que estar em MOUNT! Abraços, http://forum.imasters.com.br/public/style_emoticons/default/joia.gif Compartilhar este post Link para o post Compartilhar em outros sites