February 20, 2005 at 11:05 am
Hi all,
I don't see DTS forum for sql 2000, so I'll post here. I'm trying to exec DTS package from stored proc using xp_cmdshell and dtsrun. My proc:
print 'SUCCESS!'
ELSE
print 'FAILURE'
DTSRun: Cannot create COM Server to load and execute DTS Package. Error -2147024769 (8007007F): The specified procedure could not be found.
I checked that SQLAgent is running under this system account, just like SQLServer (this is local stand alone machine). I tried everything, eve sa username and password, nothing works.
I can execute package manually fine, but not from sp.
February 21, 2005 at 2:48 am
Try using
exec @result = master.dbo.xp_cmdshell 'dtsrun /E /SMyServer /Ntest_dtsrun'
February 21, 2005 at 2:40 pm
didn't work.
I even tried:
master..xp_cmdshell 'DTSRUN /S "MyServer" /E /N "test_dtsrun"'
with same results.
February 21, 2005 at 3:08 pm
my dtsrun utility was simply corrupt. I just ran it on a different server fine, with no problem. The dll entry point was the problem on this machine
violla
May 2, 2008 at 11:46 pm
Hi ,
I am also experiencing the same problem , could you explain me the pointing problem and what's need to be done.
Thanks
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply