Reputation: 119
I have a SSIS Package that extract from Source database to destination SQL Server table.
I would like to add a second destination of the same data to export into a excel file. Is this possible or do I need to create a second process for this?
Upvotes: 0
Views: 583
Reputation: 96650
You can do this with a Multicast component in the dataflow. If you need to send only some of the records, use a Conditional Split to filter.
Upvotes: 5