Hi,
There would be different ways to call/run a DTS from any front-end applicaiton. Below is the method that I normally apply:
- Will create a SP to call/run DTS package and the SP will executed from front-end applicaiton:
Below is the SP and you know how to call SP from an application.
CREATE PROC dbo.runDTS
AS
exec master..xp_cmdshell 'dtsrun /S "servername" /U "userid" /P "pwd" /N "DTSpackage"'
-- you can apply any error handler to ensure no error being reported.
-- End of SP
Regard,
Ahmed
-