自製imp exp小工具

2021-06-06 22:58:06 字數 1030 閱讀 9331

vbs寫的簡單小工具

將下面兩段**儲存為兩個vbs檔案,雙擊執行.

在彈出對話方塊中輸入dmp檔名(不包含副檔名)即可.

imp.vbs

infileinname=inputbox("輸入檔名。","info")

if infileinname="" then

msgbox "檔名不能為空。"

else

dim oshell

set oshell = wscript.createobject ("wscript.shell")

oshell.run "imp fromuser=prod touser=prod  userid=prod/prod file=d:\work\dumpfile\"+infileinname+".dmp log=d:\work\dumpfile\log\"+infileinname+".log feedback=10000 buffer=10485760recordlength=10485760"

set oshell = nothing

end if

exp.vbs

outfileinname=inputbox("輸入檔名。","info")

if outfileinname="" then

msgbox "檔名不能為空。"

else

dim oshell

set oshell = wscript.createobject ("wscript.shell")

oshell.run "exp owner=prod userid=prod/prod file=d:\work\dumpfile\"+outfileinname+".dmp direct=y log=d:\work\dumpfile\log\"+outfileinname+".log feedback=10000 buffer=10485760 recordlength=10485760"

set oshell = nothing

end if

基於Python的自製畫板小工具

本系統的軟體開發及執行環境具體如下。作業系統 windows 7 windows 10。python版本 python 3.7.1。開發工具 pycharm 2018。python內建模組 os sys time math。第三方模組 pygame。注意 在使用第三方模組時,首先需要使用pip in...

小工具 tree工具

wangyetao linux u1604 tree l 1 bin boot cdrom dev etc home initrd.img boot initrd.img 4.4.0 116 generic initrd.img.old boot initrd.img 4.4.0 112 gener...

幾個小工具

1 svn 輕量級的版本控制 2 incredibuild 分布式的編譯工具,對於大專案編譯很有好處,在團隊每個成員的機器上安裝一人,能極大的提高 編譯效率 3 dbg 中文幫助文件 http www.dbgtech.net windbghelp index.html 4 visualassit x...