Oracle自動匯出腳本(WINDOWS停的,匯出檔名自動加上日期和時間)
只適用於Windows客戶端,透過exp下令完成資料庫匯出。
有以次特性:
一導出的檔名會自動加上日期和時間,避免匯出資料的紛亂.
二導出的資料自動經過RAR壓縮,與此同時剔除壓縮前的資料(急需裝配好WINRAR),Oracle的DMP資料壓縮比很高的.
三支援windows的任務計畫.
四將導出的日記和dmp資料共通封裝,避免忘掉exp的內容.
條件: 務必window組裝好oracle客戶端, 並配備美Net Manager (指定資料庫連結符pcchina)
以次是具體的腳本:命名為oracleBackup.bat
-------------------------------------------------- -------------------------------------------------- ------------------------
rem windows環境停Oracle資料庫的自動備份腳本。
rem 可以將本批次設為windows任務計畫下自動施行。
@echo off
@echo ================================================
@echo windows環境停Oracle資料庫的自動備份腳本
@echo 說明:起步備份時,亟需配備以次變數
@echo 一、BACKUP_DIR 指定要備份到哪個索引
@echo 二、ORACLE_USERNAME 指定備份所使用的Oracle使用者名
@echo 三、ORACLE_PASSWORD 指定備份所用的Oracle密碼
@echo 四、ORACLE_DB 指定備份所用的Oracle聯接名
@echo 五、BACK_OPTION 備份選項,可認為空,可認為full=y,可認為owner=a用戶,b用戶之類....
@echo 六、RAR_CMD 指定RAR命令列壓縮工具所在索引
@echo ================================================
rem 以次變數急需依實際情況配備------> 注意:此腳本務須放在d:bakcup索引下
set BACKUP_DIR=D:backup
set ORACLE_USERNAME=loan_admin
set ORACLE_PASSWORD=xxxx
set ORACLE_DB=pcchina
set BACK_OPTION=
set RAR_CMD="C:Progra~一WinRARRar.exe"
for /f "tokens=一,二" %%a in ('date/t') do set TODAY=%%a
set BACK_NAME=%ORACLE_DB%_%TODAY%(%time:~零,二%時%time:~三,二%分)_
set BACK_FULL_NAME=%BACKUP_DIR%%BACK_NAME%
rem 開始備份
exp %ORACLE_USERNAME%/%ORACLE_PASSWORD%@%ORACLE_DB% %BACK_OPTION% file="%BACK_FULL_NAME%.dmp" log="%BACK_FULL_NAME%exp.log"
rem 壓縮並剔除原有資料
%RAR_CMD% a -df "%BACK_FULL_NAME%back.rar" "%BACK_FULL_NAME%.dmp" "%BACK_FULL_NAME%exp.log
本文來源:
我的異常網
Java Exception
Dotnet Exception
Oracle Exception
720 - Exception in thread
721 - Java異常
722 - Exception in thread 'main' java.lang.NullPointerException
723 - An internal error occurred during
724 - org.hibernate.LazyInitializationException: could not initialize proxy
725 - java.lang.IllegalStateException: getWriter() has already been called for this response
726 - org.hibernate.SessionException: Session is closed!
727 - javax.naming.NameNotFoundException
728 - java.lang.ClassNotFoundException: com.microsoft.jdbc.sqlserver.SQLServerDriver
729 - javax.mail.MessageRemovedException
730 - org.hibernate.LazyInitializationException:could not initialize proxy
731 - 警告: Error setting value
732 - override and commit
733 - Building workspace has encountered a problem. Errors during build
734 - Could not open the editor: An unexpected exception was thrown
735 - Error creating the view.An error occurred while automatically activating bundle org.eclipse.jdt.ui
736 - java.lang.IllegalMonitorStateException
737 - java.lang.UnsupportedClassVersionError: Bad version number in .class file
738 - java.io.EOFException
739 - not allowed to send
本文出自CSDN博客,轉載請標示出處: http://blog.csdn.net/liangdiwei/archive/2009/12/22/5051844.aspx
-