zoukankan      html  css  js  c++  java
  • RMAN 报:ORA-19504 ORA-27038

    在itpub中看到下面的问题:

    oracle 10g
    备份脚本如下
    run{
    allocate channel d1 device type disk MAXPIECESIZE=100M;
    crosscheck archivelog all;
    delete noprompt expired archivelog all;
    backup full tag '3Gfull' database include current controlfile format '/vm_svn/rmanback/fullback_%d_%T_s%s_p%p' plus
    archivelog format '/vm_svn/rmanback/arch_%d_%T_%s' delete all input;
    delete noprompt obsolete;
    }

    输出的log
    .....
    input archive log thread=1 sequence=2174 recid=1631 stamp=734587098
    ....
    input archive log thread=1 sequence=2223 recid=1680 stamp=734671824
    channel d1: starting piece 1 at 10-NOV-10
    channel d1: finished piece 1 at 10-NOV-10
    piece handle=/opt/oracle/rmanback/arch_ORCL_20101110_1544 tag=3GFULL comment=NONE
    channel d1: starting piece 2 at 10-NOV-10
    released channel: d1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup plus archivelog command at 11/10/2010 03:31:26
    ORA-19504: failed to create file "/opt/oracle/rmanback/arch_ORCL_20101110_1544"
    ORA-27038: created file already exists
    Additional information: 1

    报错原因:

    脚本中arch_%d_%T_%s没有一个参数指定了唯一值,所以在创建备份集时出现相同的备份集名,所以报错

    加上参数 %U 就可以。

    %U 代表唯一的文件名

  • 相关阅读:
    Javascript对象原型prototype和继承
    Javascript(js)使用function定义构造函数
    phpExcel中文帮助手册
    php curl_init函数用法
    nginx启动,重启,关闭命令
    Nginx配置文件详细说明
    Nginx 简单的负载均衡配置示例
    MySQL数据库的同步配置
    ucenter home 视频增加缩略图
    web分词程序和算法
  • 原文地址:https://www.cnblogs.com/hankyoon/p/5174527.html
Copyright © 2011-2022 走看看