下面為根據資料庫模板批量建立notes資料庫的例子,供參考。
sub initialize
on error goto errhandle
dim ss as new notessession
dim db as notesdatabase
dim doc as notesdocument
dim strplate as string
dim dbplate as notesdatabase
dim dbmain as notesdatabase
set db=ss.currentdatabase
set doc=ss.documentcontext
strplate="mail6.ntf"
set dbplate=new notesdatabase(db.server,strplate)
if not(dbplate.isopen) then
msgbox "模板檔案" & strplate & "不存在!"
exit sub
end if
dim i as integer
dim strname as string
dim strpath as string
for i=1 to 100
strname="user" & i
strpath="mail/" & strname & ".nsf"
set dbmain=new notesdatabase(db.server,strpath)
if dbmain.isopen then
msgbox "資料庫:" & strpath & "已經存在!"
else
set dbplate=new notesdatabase(db.server,strplate)
set dbmain=dbplate.createfromtemplate(db.server,strpath,true)
dbmain.title=strname
msgbox "資料庫" & strpath & "建立成功!"
end if
next
exit sub
errhandle:
msgbox "未知錯誤,錯誤行:" & erl
end sub
批量建立資料庫
借助powershell,我們可以輕鬆地進行批量建立資料庫,下面將詳細介紹一下 接下來,我們可以使用如下的cmdlet來實現我們的目標 執行完之後,我們重新整理一下ssms的資料庫,3個資料庫均已建立ok 對於上面出現的提供程式上下文警告,我們可以使用 suppressprovidercontext...
批量建立資料庫和批量資料恢復
近期公司有乙個資料庫需要遷移,但是裡面建立的資料庫比較多,我們採取指令碼將庫單獨備份,然後上傳到另一台主機,新建資料庫,然後恢復資料庫。將自己寫的幾個小指令碼貼上到此,分庫壓縮備份1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 bin sh version 0.1 myuse...
ADO資料庫示例
stdafx.h import c program files common files system ado msado15.dll no namespace rename eof nul adodlg.cpp coinitialize null connectionptr spconn uuid...