I am trying to load a simple Excel file into a Database table and the SSIS Package is not loading any records beyond 3233 records. I am just surprised. I tried using the "IMEX=1" mentioned in some of the online resources but it didn't work. I have to post it here because, I couldn't find any specific resource for this particular issue. Could someone please help me what's happening and how to resolve this?
FYI, I am using an Excel Source, a Data Conversion Transformation and an OLEDB Destination in my package in SQL Server 2014 (which is pretty simple and straightforward).
The Excel file I am trying to load can be found here.
And, here is my table structure.
CREATE TABLE [gov].[loan_limits]( [FIPS_State_Code] [varchar](3) NOT NULL, [FIPS_County_Code] [varchar](3) NOT NULL, [County_Name] [varchar](50) NOT NULL, [State] [varchar](2) NOT NULL, [CBSA_Number] [varchar](6) NOT NULL, [One_Unit_Limit] [money] NOT NULL, [Two_Unit_Limit] [money] NOT NULL, [Three_Unit_Limit] [money] NOT NULL, [Four_Unit_Limit] [money] NOT NULL )
Thanks!
Known is a DROP, Unknown is an OCEAN.