I have a Data Flow Task that uses an OLE DB Source to call a SQL 2005 stored proc, and sends the results to a Flat File Destination. Very simple, works great.
My question is: What's the best way (i.e., without creating the Data Flow or OLE DB Source objects multiple times) to send the results from that OLE DB Source to multiple Flat File Destinations? In other words, using one OLE DB Source, create a c:\Users.txt file, a c:\Archive\Users.txt file, and an h:\FTP\Users.txt file, all containing the exact same data?
Thanks!