using DTS to download data into a file

  • I've created a simple DTS package to download data in a table to a file.   In my table, I have a few float columns, and some of the data looks like "3.0456789e-2".  When I run the package, I get exactly that in my text file - "3.0456789e-2", when I really want "0.030456789". 

    Am I doing something wrong?

  • You need to cast the floats as decimals:  convert(decimal(18,9),mycol).  Use a sql query for the source.

    Russel Loski, MCSE Business Intelligence, Data Platform

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply