Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub SendCmd_Click()
Dim dtsp As New DTS.Package
dtsp.LoadFromSQLServer _
ServerName:="The-server", _
ServerUserName:="user", _
ServerPassword:="*****", _
PackageName:="TheDTSPackageName"
dtsp.Execute
End Sub
public function DTS()
Dim SV as Variant
Dim DQ, s, s1, s2 as String
Dim ServerName as String
Dim PackageName as String
Dim ExecutionLine as String
DQ = """"
s = "dtsrun /S"
s1 = "/E"
s2 = "/N"
ServerName = "PVSQL"
PackageName = "DTSTEST"
ExecutionLine = DQ & s & ServerName & DQ & " " & & DQ & s1 & DQ & " " & DQ & s2 & PackageName & DQ
SV = Shell(ExecutionLine)
End Function