搭建Oracle的exp備份機

mrhaozi發表於2009-11-25

  【IT168 技術文件】Oracle服務端裝的版本為10.1,IP地址為129.1.9.90

  在備份機上 安裝oracle10.1,配IP地址為129.1.9.91,關閉防火牆

  並修改tnsnames.ora檔案,新增如下內 容:

  JMYBJS =

  (DESCRIPTION =

  (ADDRESS = (PROTOCOL = TCP)(HOST = 129.1.9.90)(PORT = 1521))

  (CONNECT_DATA =

   (SERVER = DEDICATED)

  (SERVICE_NAME = jmybjs)

  )

  )

   在D盤新建資料夾:

  d:backupdmp

  d:backuplog

  用來存放dmp檔案 和備份的日誌。

  修改備份指令碼如下:

  'Nightly Bulk copy export for the customers table&veiw

  'Write output to clarentYYMMDD.txt and errors to ERRYYMMDD.txt

  ''strssql="bcp demo.clrnuser.bill_recordview out c:bibak"+outfile+" -U jl_voip -P jlvoip -c -k -t,"

  Dim outfile,aa,bb,stroption1,stroption2,A,B,C,strsql

  set ws=WScript.CreateObject("WScript.shell")

   A=cint(month(dateadd("d",0,date())))

   B=cint(day(dateadd("d",0,date())))

   C=cint(year(dateadd("d",0,date())))

  if A<10 then aa=cstr(0)+cstr(A)

  if A>=10 then aa=cstr(A)

  if B<10 then bb=cstr(0)+cstr(B)

  if B>=10 then bb=cstr(B)

   outfile=cstr(C)+aa+bb

   stroption1="D:oracle_bfproduct10.1.0Db_1BINexp system/******@jmybjs full=y buffer=900000 file=d:backupdmpjmybjs"+outfile+" log=d:backuplogjmybjs"+outfile+".log"""

  strsql=stroption1

   ret=ws.Run(strsql)

  測試後,備份正常。

  修改刪除指令碼,使備份資料在備份機上保留30天

   'Nightly Bulk copy export for the customers table&veiw

   'Write output to clarentYYMMDD.txt and errors to ERRYYMMDD.txt

   ''strssql="bcp demo.clrnuser.bill_recordview out c:bibak"+outfile+" -U jl_voip -P jlvoip -c -k -t,"

  Dim outfile,aa,bb,stroption1,stroption2,A,B,C,strsql

  set ws=WScript.CreateObject("WScript.shell")

   A=cint(month(dateadd("d",-30,date())))

   B=cint(day(dateadd("d",-30,date())))

   C=cint(year(dateadd("d",-30,date())))

  if A<10 then aa=cstr(0)+cstr(A)

  if A>=10 then aa=cstr(A)

  if B<10 then bb=cstr(0)+cstr(B)

  if B>=10 then bb=cstr(B)

   outfile=cstr(C)+aa+bb

  stroption1="C:WINDOWSsystem32Delete d:backupdmpjmybjs"+outfile+".dmp"

  strsql=stroption1

   ret=ws.Run(strsql)

  測試,提示不正確,檢查後,發現這個備份機中的sytem32資料夾下沒有delete.exe 檔案,從其他系統中複製delete.exe檔案到這個備份機的system32下,測試正常。

  最後,新增到windows的定時任務 中。

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/16396910/viewspace-1029060/,如需轉載,請註明出處,否則將追究法律責任。

相關文章