run dts package on different domain
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
I am using this basic code to run a DTS package. Dim oPKG As New DTS.Package With oPKG .LoadFromSQLServer("DEV", , , _ DTS.DTSSQLServerStorageFlags.DTSSQLStgFlag_UseTrustedConnection, _ , , , "HR_LoadData") oPKG.Execute() oPKG.UnInitialize() oPKG = Nothing End With It works so great I would now like to run some DTS packages that reside in sql server on a different domain. What code do I need to get to a different domain?