I am new to SSIS and I will jump right in:
Requirements:
What has been accomplished:
Data flow has been created, currently all rows and all tables migrate without issue.
What remains to be done:
This one particular table needs to be partially imported. How can I do this keeping the requirement in mind. The requirements are firm, SSIS a must and no staging tables are permitted.
Thank you
Within your Data Flow, I would edit the Data Source object for that particular table. There I would design a SQL statement e.g.
SELECT * FROM mytable WHERE mytable.datex >= to_date ( '2014-01-01', 'yyyy-mm-dd' )