I have excel which has data like below
2015.0230
2015.1100
2015.9000
I'm using Wizard [import export] to load these values to DB table. However, after loading, it come like below:
2015.023
2015.11
2015.9
When I'm converting this to char or nvarchar
, its throwing error:
Unknown conversion from double to nvarchar
What datatype should I consider? Is there any ways so that such thing can be done via SSIS?
The result I wanted in DB table should be same as excel file.