type tape 就可以了吧

解决方案 »

  1.   

    RMAN> run{
    2> allocate channel t1 type tape;
    3> backup full filesperset 3
    4> (database format 'full_%d.%s');
    5> release channel t1;}RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of allocate command on t1 channel at 03/29/2004 15:58:24
    ORA-19554: error allocating device, device type: TAPE, device name: 
    ORA-27001: unsupported device type
    Additional information: 1
     run{
    2> allocate channel t1 type 'SBT_TAPE';
    3> }using target database controlfile instead of recovery catalog
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of allocate command on t1 channel at 03/29/2004 15:50:27
    ORA-19554: error allocating device, device type: SBT_TAPE, device name: 
    ORA-27211: Failed to load Media Management Library
    Additional information: 25
      

  2.   

    先配置介质管理器
    然后
    run{
    allocate channel c1 type 'sbt_tape';
    backup database;
    }