Add blank rows to the dataset in the OLE DB source in SSIS. I assume that your columns in your database are called Header1, Header2 and Header3. Replace the original OLE DB query with the following query:
select ' ' as Header1, ' ' as Header2, ' ' as Header3 UNION ALL select ' ', ' ', ' ' UNION ALL select ' ', ' ', ' ' UNION ALL select ' ', ' ', ' ' UNION ALL select ' ', ' ', ' ' select Header1, Header2, Header3 from Your_SQL_SERVER_Tabl
You may need to drop your columns in varchar if they belong to other types.
source share