SQL Server | Other
Additional SQL Server features and topics not covered by specific categories
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Is it possible to load odd column data from sql server table to flat file in ssis package?
Additional SQL Server features and topics not covered by specific categories
Answer accepted by question author
Hi @Su Si,
When you create the source manager, you may use below command.
Select * from yourtable where (RowID % 2) = 1
If you do not have the RowID, you may use ROW_NUMBER().
Regards,
Zoe Hui
If the answer is helpful, please click "Accept Answer" and upvote it.
Create a view with only that columns you want to export.