Hi
I have the following code to run a DTS Package from VB
I have sysadmin rights on the server and I am dbo for the database. I can connect and use the database via Enterprise Mgr and query analyser but the code fails :
Run time error -2147217843 (80040e4d)
Login Failed For User 'username'
any ideas ?
thanks
I have the following code to run a DTS Package from VB
Code:
Sub ExecutePackage()
Dim oPKG As DTS.Package, oStep As DTS.Step
Set oPKG = New DTS.Package
Dim sServer As String, sUsername As String, sPassword As String
Dim sPackageName As String, sMessage As String
Dim lErr As Long, sSource As String, sDesc As String
' Set Parameter Values
sServer = "Server"
sUsername = "Login"
sPassword = "password"
sPackageName = "mypackage"
' Load Package
oPKG.LoadFromSQLServer sServer, sUsername, sPassword, _
DTSSQLStgFlag_Default, , , , sPackageName
' Set Exec on Main Thread
For Each oStep In oPKG.Steps
oStep.ExecuteInMainThread = True
Next
' Execute
oPKG.Execute
' Get Status and Error Message
For Each oStep In oPKG.Steps
If oStep.ExecutionResult = DTSStepExecResult_Failure Then
oStep.GetExecutionErrorInfo lErr, sSource, sDesc
sMessage = sMessage & "Step """ & oStep.Name & _
""" Failed" & vbCrLf & _
vbTab & "Error: " & lErr & vbCrLf & _
vbTab & "Source: " & sSource & vbCrLf & _
vbTab & "Description: " & sDesc & vbCrLf & vbCrLf
Else
sMessage = sMessage & "Step """ & oStep.Name & _
""" Succeeded" & vbCrLf & vbCrLf
End If
Next
oPKG.UnInitialize
Set oStep = Nothing
Set oPKG = Nothing
' Display Results
MsgBox sMessage
End Sub
I have sysadmin rights on the server and I am dbo for the database. I can connect and use the database via Enterprise Mgr and query analyser but the code fails :
Run time error -2147217843 (80040e4d)
Login Failed For User 'username'
any ideas ?
thanks