vote up 1 vote down star
1

I need to change the date format from US (mm/dd/YYYY) to UK (dd/mm/YYYY) on a single database on a SQL server machine.

Does anyone know how to do this.

I've seen statements that do this for the whole system, and ones that do it for the session, but I cant change the code now as It will have to go through QA again, so I need a quick fix to change the date time format.

Update

I realize that the date time has nothing to do with how SQL Server stores the data but it does have a lot to do with how it parses queries.

I'm chucking raw data from an xml file into a db. The dates int he XML file are in UK format.

flag

66% accept rate

8 Answers

vote up 2 vote down check

You could use SET DATEFORMAT, like in this example

declare @dates table (orig varchar(50) ,parsed datetime)

SET DATEFORMAT ydm;

insert into @dates
select '2008-09-01','2008-09-01'

SET DATEFORMAT ymd;
insert into @dates
select '2008-09-01','2008-09-01'

select * from @dates

You would need to specify the dateformat in the code when you parse your XML data

link|flag
vote up 0 vote down

you do realize that format has nothing to do with how sql server stores datetime, right?

you can use set dateformat for each session. there is no setting for db only.

if you use parameters for data insert or update or where filtering you won't have any problems with that.

link|flag
See above answer – Omar Kooheji Dec 1 '08 at 14:42
vote up 0 vote down

You can only change the language on the whole server, not individual databases. However if you need to support the UK you can run the following command before all inputs and outputs:

set language 'british english'

Or if you are having issues entering datatimes from your application you might want to consider a universal input type such as

1-Dec-2008

link|flag
How does one change the language ont he server then? – Omar Kooheji Dec 1 '08 at 14:49
vote up 0 vote down

If this really is a QA issue and you can't change the code. Setup a new server instance on the machine and setup the language as "British English"

link|flag
vote up 1 vote down

In order to avoid dealing with these very boring issues, I advise you to allways parse your data with the standard and unique SQL/ISO date format which is YYYY-MM-DD. Your queries will then work internationally, whatever are the date parameters on your main server or on the querying clients (where local date settings might be different than main server settings)!

link|flag
unfortunately I'm not generating the data just consumung it. – Omar Kooheji Dec 2 '08 at 10:00
Philippe - I was convinced about that as well until someone showed me an example in SQL Server 2008 when date specified as 2008-09-01 was translated to 9th of January 2008 when the region was set to US. – kristof Dec 2 '08 at 11:05
As a rule I am trying to avoid using date in string format on the database level. When dealing with data input I would cast the string to date on the application level using appropriate locale settings so then it reaches the db in datetime date type. This way it is independent on the local settings – kristof Dec 2 '08 at 11:09
vote up 0 vote down

ALTER TABLE [dbo].[yourfieldname] ADD DEFAULT (getdate()) FOR [yourfieldname]

its working 100%

link|flag
vote up 0 vote down

select * from mytest EXEC sp_rename 'mytest.eid', 'id', 'COLUMN' alter table mytest add id int not null identity(1,1) update mytset set eid=id ALTER TABLE mytest DROP COLUMN eid

ALTER TABLE [dbo].[yourtablename] ADD DEFAULT (getdate()) FOR [yourfieldname]

its working 100%

link|flag
vote up 0 vote down

SQL Server 2008 run... EXEC sp_defaultlanguage 'username', 'british'

http://twitter.com/paulhale

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.