Problemas con RMAN - RMAN-03009

Tengo el siguiente error con RMAN:

RMAN-03009: failure of allocate command on t1 channel at 04/30/2008 22:42:08 ORA-03113: end-of-file on communication channel

el script es el siguiente:

Recovery Manager: Release 10.2.0.1.0 - Production on Wed Apr 30 22:42:01 2008

Copyright (c) 1982, 2005, Oracle.  All rights reserved.

connected to target database: QLCNT (DBID=4121126273)

connected to recovery catalog database

RMAN> run {

2> allocate channel  t1 type ’sbt_tape’

3> parms ‘ENV=(TDPO_OPTFILE=/opt/tivoli/tsm/client/oracle/bin/tdpo_h.opt)’;

4>

5> # realiza un backup del controlfile to trace, queda en el udump.

6> sql ‘alter database backup controlfile to trace’;

7>

8> # respaldar  base datos.

9> backup incremental level = 0

10> filesperset 6

11> tag = ‘qlcnt_lv0′

12> format ‘qlcnt_df_men_%T_%u’

13> database keep until time ’sysdate+9999′ logs;

14>

15> # respaldar archivelogs

16> backup format ‘qlcnt_ar_men_%T_%u’ archivelog all delete input;

17>

18> release channel t1;

19> }

20>

21>

RMAN-00571: ===========================================================

RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============

RMAN-00571: ===========================================================

RMAN-03009: failure of allocate command on t1 channel at 04/30/2008 22:42:08

ORA-03113: end-of-file on communication channel

3 Responses to “Problemas con RMAN - RMAN-03009”

  1. fmunoz says:

    Estimado Carlos:

    Posiblemente se perdio la coneccion del oracle con el tsm, hay un agente que comunica el tsm con el oracle. En resumen algo desconfiguro o dano el agente.

    Es un problema a nivel de unix, el operador de unix debe de revisar que cambio a nivel de comunicacion entre el oracle y el tcm. talves esta pagina ayude a la persona de unix:

    http://www.oracle.com/technology/deploy/availability/htdocs/bsp.htm

    Es un problema a nivel de MML API.

    El rman no hace respaldo directamente a sbt_tape, a menos que el agente que crea el puente entre el rman y el tcm este instalado.

    Espero que esto te sirva.

    Francisco Munoz Alvarez

  2. coberreuter says:

    Gracias Francisco.

    Efectivamente habian desabilitado la cuenta oracle.
    Problema resuelto.

    Gracias.

    Carlos Oberreuter

Leave a Reply