Home Forums SQL Server 2005 Business Intelligence Appending multiple datasets with different columns and data types in the same file in ssis RE: Appending multiple datasets with different columns and data types in the same file in ssis

  • One option: use a Script Task to write each resultset to the same file one after the other.

    Another option: use a Transformation Script Component to change the rows of each resultset to a single wide string, then use the Union All Transformation to bring them into one resultset before writing that to a Flat File Destination.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato