• <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>
    • 軟件測試技術
    • 軟件測試博客
    • 軟件測試視頻
    • 開源軟件測試技術
    • 軟件測試論壇
    • 軟件測試沙龍
    • 軟件測試資料下載
    • 軟件測試雜志
    • 軟件測試人才招聘
      暫時沒有公告

    字號: | 推薦給好友 上一篇 | 下一篇

    oracle數據庫自動備份的實現歷程

    發布: 2007-4-22 19:48 | 作者: 未知    | 來源: 網絡     | 查看: 42次 | 進入軟件測試論壇討論

    領測軟件測試網

    oracle數據庫自動備份的實現歷程

     問題描述:
    oracle自動備份腳本的實現。

    錯誤提示1:
    Message file RMAN<lang>.msb not found
     
    Verify that ORACLE_HOME is set properly
     
    。。。。。。

    錯誤原因:
    自動執行的不能夠識別相應的命令,需要在自動備份腳本中顯式的聲明oracle的環境變量。

    錯誤提示2:
    standard in must be a tty
     
    。。。。。。

    錯誤原因:
    不能在cron使用su或者管道等操作,必須將su命令移動到相關的shell腳本中。

    錯誤提示3:
    Argument     Value          Description
    -----------------------------------------------------------------------------
    target       quoted-string  connect-string for target database
    catalog      quoted-string  connect-string for recovery catalog
    nocatalog    none           if specified, then no recovery catalog
    cmdfile      quoted-string  name of input command file
    log          quoted-string  name of output message log file
    trace        quoted-string  name of output debugging message log file
    append       none           if specified, log is opened in append mode
    debug        optional-args  activate debugging
    msgno        none           show RMAN-nnnn prefix for all messages
    send         quoted-string  send a command to the media manager
    pipe         string         building block for pipe names
    timeout      integer        number of seconds to wait for pipe input
    checksyntax  none           check the command file for syntax errors
    -----------------------------------------------------------------------------
    Both single and double quotes (' or ") are accepted for a quoted-string.
    Quotes are not required unless the string contains embedded white-space.
     
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00556: could not open CMDFILE "backup_ar.rcv"
     
    。。。。。。


    錯誤原因:
    需要在cmdfile中指明絕對路徑,不能因為shell腳本調用的cmdfile是在同一個目錄下就可以直接使用文件名

    或者直接使用./

    正確示例代碼:

    1、#cron文件
    0 12,18 * * * /home/oracle/bak_sh/backup_ar.sh
    #表示每天12,18點對數據庫歸檔日至進行全備份

    2、入口shell文件,文件名:backup_ar.sh
    export ORACLE_HOME=/home/u01/app/oracle/oracle/product/10.2.0/db_1
    export ORACLE_SID=test
    export LANG=en_US.UTF-8
    /home/u01/app/oracle/oracle/product/10.2.0/db_1/bin/rman cmdfile = backup_ar.rcv

    3、rman備份腳本
    connect target /
    connect catalog rman/rman@rman
    run{
    allocate channel d1 device type disk;
    sql 'alter system archive log current';
    backup archivelog all delete input
      format '/opt/rmanback/full_%u_%p_%c.ac' filesperset = 3;
    release channel d1;
    }

    學習入口(來自論壇):
    1、兩種辦法
    一是用root的crontab,*/2 * * * * a.sh --》su - oracle -c a.sh
    一是在a.sh里加上oracle的環境。


    2、我們做的cron測試
    實例:
    Vi /etc/cron.minly/new.sh
    內容:
    Su – oracle –c “/home/oracle/mginfo.sh”

    Vi /home/oracle/mginfo.sh
    內容:
    Exp mginfotech/mginfotech file=mginfotech.dmp log=mginfotech.log

    Vi /etc/crontab
    內容:
    59 23 * * * root run-parts /etc/cron.minly
    每晚23:59分鐘執行


    cron中無法讀取環境變量
    在shell中顯示地export環境變量
    export ORACLE_HOME=/opt/ora9/product/9.2
    export ORACLE_SID=oracle
    export NLS_LANG=xxxxx
    然后再試

    延伸閱讀

    文章來源于領測軟件測試網 http://www.kjueaiud.com/


    關于領測軟件測試網 | 領測軟件測試網合作伙伴 | 廣告服務 | 投稿指南 | 聯系我們 | 網站地圖 | 友情鏈接
    版權所有(C) 2003-2010 TestAge(領測軟件測試網)|領測國際科技(北京)有限公司|軟件測試工程師培訓網 All Rights Reserved
    北京市海淀區中關村南大街9號北京理工科技大廈1402室 京ICP備10010545號-5
    技術支持和業務聯系:info@testage.com.cn 電話:010-51297073

    軟件測試 | 領測國際ISTQBISTQB官網TMMiTMMi認證國際軟件測試工程師認證領測軟件測試網

    老湿亚洲永久精品ww47香蕉图片_日韩欧美中文字幕北美法律_国产AV永久无码天堂影院_久久婷婷综合色丁香五月

  • <ruby id="5koa6"></ruby>
    <ruby id="5koa6"><option id="5koa6"><thead id="5koa6"></thead></option></ruby>

    <progress id="5koa6"></progress>

  • <strong id="5koa6"></strong>