Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Execute DTS Package from Access VBA

Status
Not open for further replies.

RobLehman

Programmer
May 7, 2003
5
0
0
US
I want to execute a DTS Package stored on SQL Server from within VBA. Any ideas?

Thanks!
 
I wrote a stored procedure that would execute a DTS package, however it required sa-equivalent rights to run it (dtsrun/xp_cmdshell - I can't remember which) - see SQL BOL for details. Our server at the time was called CBSFS02, so you should be able to modify the following:

CREATE PROCEDURE ExecDTSPackage
@PackageName varchar(255),
@ExecResult int OUTPUT
AS

DECLARE @result int
DECLARE @cmdline varchar(255)
SET @cmdline = 'dtsrun /S CBSFS02 /E /N "' + @PackageName +'"'
SET @result=0
EXEC @result = master.dbo.xp_cmdshell @cmdline, no_output
/* Return a boolean i.e. 0 = False, everything else = True */
IF (@result = 0) /* It worked */
SET @ExecResult = 1 /*True*/
ELSE
SET @ExecResult = 0 /*False*/

GO
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top