rem 如果檔案存在,那麼退出
rem if exists %exp_file% goto end1
set store_path=d:/營銷開發日常備份/資料庫備份/hndl_%yyyymmdd%_%ppqq%.dmp
rem 到出檔案
echo on
exp hndl/hndl@hndl full=n grants=y rows=y file=%exp_file% owner=hndl
echo off
rem 拷貝到預設路徑
echo on
copy %exp_file% %store_path%/y
del %exp_file% /f
rem 匯出資料庫到預設路徑,資料庫匯出檔案為當日日期
rem exp hndl/hndl@hndl full=n grants=y rows=y file=d:/營銷開發日常備份/資料庫備份/%date:~4,10%.dmp owner=hndl
rem 匯出資料庫到預設路徑,資料庫匯出檔案為當日日期的星期幾,每個星期只保留乙份備份,重複檔案將自動覆蓋
rem exp hndl/hndl@hndl full=n grants=y rows=y file=d:/營銷開發日常備份/資料庫備份/%date%.dmp owner=hndl
rem 匯出完成
remrem goto end2
remrem :end1
rem rem 退出
rem echo 存在檔案%exp_file% 請確認後退出
rem goto end3
rem :end2
rem echo 匯出完成,請確認退出
rem goto end3
rem :end3
rem pause
rem echo 完成退出
獲取系統日期,時間
public class dateutil25 大概就是這樣吧。學習calendar用法和format格式設定。特別注意12 24小時制的問題。myear c.get calendar.year 獲取當前年份 mmonth c.get calendar.month 獲取當前月份 mday c.get...
Java獲取系統日期時間
方法一 利用calendar類來獲取當前日期和時間,如下 獲取系統時間 return public string getdate 方法二 利用date類來獲取當前日期時間,並通過 dateformat類來格式化輸出,如下 獲取當前系統時間 return public string getdate 上...
oracle獲取指定的日期 時間
size medium 本週 select trunc sysdate,d 1 from dual select trunc sysdate,d 7 from dual 本月 select trunc sysdate,mm from dual select last day trunc sysdat...