Change the Date Format

  • Good evening,

    Please, my sql server Database has a table which contains this field: Date_Start(Datetime, Null). The format of the data in the table is yyyy/mm/dd. I have tried to export this table in Excel through SIS. Although I have used this fonction Convert(Date,Date_Start,103) the date format is still yyyy/mm/dd instead of dd/mm/yyyy in my Excel File. please what can I do to obtain the correct date format dd/mm/aaaa in my excel file after data exportation from my table through SIS?

    Thanks in advance.

  • Converting a date back to a date will end up displaying the date in the same default format.

    Try:

    Convert(varchar(20),Date_Start,103)


    And then again, I might be wrong ...
    David Webb

  • It's Ok now. Thank you.

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

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