I have a column in a SQL Server 2008 datatabase that is of the Data Type datetime2. This means my dates are displayed in the format YYYY-MM-DDThh:mm:ss. However, I need my dates to be in the format dd/mm/YYYY by default and I cannot change the column datatype. Also, the datetime2 format is not affected by the SET LANGUAGE and SET DATEFORMAT session locale settings. Finally, I do not want to use the convert() functionality as otherwise I need to rewrite all of my queries.
How can this still be achieved?
Many thanks!
When you say "displayed" - displayed where? In SSMS? Then you'll need to change your query. In an app/report? Then change the app code/report to properly format the date.
Dates are Dates in SQL - the "format" is only a consideration when you visualize the date. If you don't specify a format (using
CONVERT
), the "default" format fordatetime2
will be used. There's no system-wide setting to override that default fordatetime2
that I'm aware of.