GrandMauler
Programmer
Here's the problem: I'm writting a simple SSIS package that reads a sheet from an Excel File and imports into a table in an SQL 2k5 database.
Some of the columns in Excel are floating point. I need to convert it to either varchar or nvarchar.
The problem is that if I do a straight import from source to destination, the result is scientific notation written in text.
I'd like the scientific notation converted to an actual decimal, then converted into text.
I realize could create an intemdiate SQL script to convert each floating point column from scientific to traditional number.
But is there an easier way?
thanks in advance.