I am trying to run DTS Package from ASP 3.0 with the following codes:
It failed with this message, "Package failed because Step 'DTSStep_DTSDataPumpTask_1' failed".
I am using NT Authentication in both IIS and SQLServer, and both Web and SQLServer are in the same machine.
Can someone steer me to the right direction? Thank you.
Code:
Set objDTSPackage = server.CreateObject("DTS.Package")
objDTSPackage.LoadFromSQLServer "serverName", "", "", 256,,,,"pkgName"
objDTSPackage.FailOnError = true
objDTSPackage.Execute
It failed with this message, "Package failed because Step 'DTSStep_DTSDataPumpTask_1' failed".
I am using NT Authentication in both IIS and SQLServer, and both Web and SQLServer are in the same machine.
Can someone steer me to the right direction? Thank you.