Hi All,
I'm pretty new to SQL Server 2005 and I'm wondering how to organize my
business rules efficiently.
I'm willing to create a Package with several Data Flow Task in my
Control Flow, each Business Rule will be encapsulated in a Data Flow
task. I guess this is possible in SSIS but I can't find how my data can
be send from one data flow to another one. I definitly don't want my
dataset to be parsed completly for each business rule.
Does anyone have an idea how to implement this in SSIS
Kind regards,
Sebastien.

Organizing Business Rules in SSIS
Richard D Line
PL_Pit
Yes, there is a very good in-built method for doing this. Use raw files to pass data between different data-dlows.
Alternatively you could use an in-memory recordset as explained here: http://blogs.conchango.com/jamiethomson/archive/2006/01/04/2540.aspx but I don't recommend it!. (Read the comments as well).
-Jamie