page529.vbs

来自「Apress - Managing Enterprise Systems Wit」· VBS 代码 · 共 19 行

VBS
19
字号
Const DTSSQLStgFlag_UseTrustedConnection = 256
Dim objDTS
Set objDTS = CreateObject("DTS.Package")
'open the ProductImport package from the Odin server using NT 
'authentication
objDTS.LoadFromSQLServer "Odin", , , _ 
             DTSSQLStgFlag_UseTrustedConnection, , , , "ProductImport"

'set the data source for the text connection. 
objDTS.Connections("Connection 1").DataSource = "d:\importproducts.txt"

'enable writing of the completion status to event logs
objDTS.WriteCompletionStatusToNTEventLog = True

'set the supplier ID global variable to 4, which is the Tokyo Traders 'supplier
objDTS.GlobalVariables("SupplierID") = 4

objDTS.Execute

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?