批處理寫的 oracle Database Backup還原工具

來源:互聯網
上載者:User

這是針對oracle編寫的,可以用在不同的電腦上,因為它會自動讀取當前電腦的環境變數,從而取得oracle的安裝路徑,唯一有一點不足的地方是程式中運行過程中會產生一個中間文字檔,不過這並不礙大事,備份或者還原完了以後將會自動刪除產生文字檔,代碼如下: 複製代碼 代碼如下:@echo off&setlocal enabledelayedexpansion
color 0a
:start
for /f "tokens=2 delims==" %%a in ('path') do (
set "str=%%a"
set str=!str: =+!
for %%i in (!str!) do (
set "var=%%i"
set var=!var:+= !
echo !var!>>change.txt
for /f "delims=" %%i in ('findstr "oracle" change.txt') do set var=%%i
)

)

set /p choice=1.備份 2.還原 3.按任意鍵退出:
if %choice%==1 goto exp
if %choice%==2 goto imp
:exp
del /q change.txt
set /p file=請輸入備件資料庫的檔案名稱:
set /p path=請輸入存放的路徑(記得輸冒號:):
"%var%"\exp.exe smhr/smhr file=%path%\%file% full=n
set /p choice=1.繼續 2.按任意鍵退出:
if %choice%==1 goto start
:imp
del /q change.txt
set /p file=請將要匯入的資料庫檔案拖入表單內:
"%var%"\imp.exe smhr/smhr file=%file% full=y
set /p choice=1.繼續 2.按任意鍵退出:
if %choice%==1 goto start

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.