Relative Content

Tag Archive for sqlmysqlsql-serverssis

Convert datatype in flat file source to oledb destination in mysql

In flat file source column datatype is float with length 8 , precision 53 and scale as NULL. While fetching into OLEDB destination the column value is getting truncated
Example source has values 11.10 its Been fetching as 11 in SQL
Can we convert the datatype of float to decimal with same length and precision?
Please help on this