Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 use Execute Package tasks to build my process flow?

Thanks for your tips

share|improve this question

2 Answers

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

share|improve this answer

You run the SSIS packages from SQL Jobs.

You can easily sequence the packages in the Job Steps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.