I am trying to copy data from a flat file to a SQL table using SSIS. I have a Data Flow Task where I have created a Flat File Source pointing to the csv file and an OLE DB Destination pointing to the table I want the data in. The problem I am facing is when I run the package, I get only 2621 rows copied to the SQL destination table, where I have about 1,70,000 records in the csv. Not sure why this is happening.
Thanks in advance.
This could be a number of things. This is what comes to mind:
SSIS -> Package configurations
or theExpressions
properties on your connection manager.DataRowsToSkip
property on your flat file connection manager is set to a value.Format
,Row delimiter
,Column delimiter
, etc. Use the preview function to see the output.Ignore failure
, meaning that lines which SSIS cannot process (due to, e.g., incompatible data types) are ignored without warning.