开发者

SSIS 2008 best way to run sequential packages

At this point,I created several packages that need now to be run sequentially at the end. How to do that? Shall I create again a new package and u开发者_开发知识库se Execute Package tasks to build my process flow?

Thanks for your tips


Yes, it can be a good solution.

Alternatively you can use a batch file and call dtexec utility more times.

For instance:

dtexec /f "first package path" /Rep EWP
dtexec /f "second package path" /Rep EWP ^ 
       /Set "\Package.Variables[User::VariableName].Value";"CurrentValue"

In the second command you can set a package variable. VariableName, and CurrentValue must be changed.

More information visit MSDN


You run the SSIS packages from SQL Jobs.

You can easily sequence the packages in the Job Steps.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜