Click here to Skip to main content
16,005,038 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In Excel file e.g. OrigLoanAmt column contain value as 0.00 & added column in create table scripts as below:

Create table SampleLoans
(
[OrigLoanAmt] [decimal](18, 0) NOT NULL,
)


Using data conversion transformation editor for column OrigLoanAmt used data type as double -precision float[DT_R8].
But while excuting ssis package belwo error occure:

[ADO NET Destination [3749]] Error: An exception has occurred during data insertion, the message returned from the provider is: Column 'OrigLoanAmt' does not allow DBNull.Value.
Posted

1 solution

In create statement column is not allowing null as below
[OrigLoanAmt] [decimal](18, 0) NOT NULL,

Change it to allow null.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900