I am running an SSIS package through a batch file using dtexec.exe. There are 2 other files that need to run after the SSIS. When the SSIS package is done running the command window just stays open and will not close, this makes it so the other 2 scripts cannot run that are in the batch file. Does anyone have any idea why this would not close and allow the rest of the batch file to run. It completes successfully and then just hangs there. This is a very urgent need, please help.
Here is my batch file
David Kuhn
------------------
Here is my batch file
Code:
@echo off
dtexec.exe /FILE "C:\Documents and Settings\user\My Documents\Visual Studio 2005\Projects\test\test 1.dtsx" /MAXCONCURRENT " -1 " /CHECKPOINTING OFF
wscript.exe ItemsToFreightReport.vbs
wscript.exe SendEmails.vbs
David Kuhn
------------------