I want to schedule the task using contro panel schedule task item.
I want to run two package in sequence. If the execution of one gets over then other should start.
I have configured the execution detail in BAT file.
I know how to schedule the task. But can anyone please suggest me how to schedule the task in sqeuence i.e. execution of BAT file in sequenece (one after other).
I suggest that specifing job from sql server agent is the best way to execute sequeneced package|||leo1 wrote:
I want to run two package in sequence. If the execution of one gets over then other should start.
Try the master package scenario mentioned here -
Run multiple SSIS packages in order - MSDN Forums
(http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=748282&SiteID=1)
thanks for the reply.
But My packages are not dependent. and I want to use the windows schedule task.
I want to run it using the BAT file, PLease suggest me how to schedule it using windows scheudle task one after other
|||"one after other" means dependent, in my understanding of English. If you are worried about packages failing, but still want to execute the subsequent package, then you can still use a master package with precedence constraints, as they can be evaluated for success, failure or completion.
If you want to use Windows Scheduler and a batch file, then do so. Are you asking how to call a package from a batch file? If so lookup DTEXEC in Books Online. Just add multiple calls to DTEXEC in the batch file.