Exporting to CSV with Leading Zeros

  •  

    Hi All,

    Thanks for help...

    I have a DTS package in SQL Server2000 that exports a file in CSV format. One of the columns has to have leading zeroes, which I added in the execute sql; however, when exported, the leading zeroes are not there. What is the easiest way to fix this. I have bunch of packages that I need to do the samething for leading zeroes.

    Thanks a lot for help

  • Are you exporting the field as text?

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Are you seeing the leading zeros missing when viewing in excel, or are they actualy missing if you open the csv in a text editor. Just guessing but excel maybe formatting.

  • prefix the column with an apostraphe ', then excel will know it is a text field

     

    so something like this, select field1 + ''' as field1 from table1

  • Darren,

    You say "prefix", but show an example using "postfix."

    Which is correct?

     

  • He/She is referring to prefix.

  • My two cents...  The easiest way to solve this is to set your destination connection's data source to "Microsoft Excel 97-2000". (if you used the wizard to create your DTS Package this is Connection 2 in the DTS Designer"

    This assumes that you are exporting your data to csv so that it can be viewed via MS Excel (or compatible application), if you are exporting the data to csv so that it can imported into another database then all you will need to do is verify (as noted by andrewkane17 ) that when viewing your file in notepad the leading zeros are visible.

    If the leading zeros are not visible then you need to set the type to varchar for the column containing leading zeros.  (If you used the wizard then this is the "Copy Data from Results to Results Task" in the DTS Designer (it is the arrow pointing to your file icon).

    and now the second cent:  It will work to add a prefix such as Select '''+Column from table.  One thing to keep in mind using this prefix is that excel will display the quote when the file is opened and the quote will exist in the text file.  Depending upon your requirments for usage of the file after export this may or may not be an issue.

    hope this helps

    Jason

    -

Viewing 7 posts - 1 through 6 (of 6 total)

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