vote up 1 vote down star

Why on one system would the default time be 12:00:00 and on another 00:00:00

DateTime.Now.Date

Starting with string in a web ui, passing thru Nhibernate to SQL Server 2005. For example 6/10/2009 is entered in a textbox on a web server by the time it is caught in sql profiler I see 2 different times

00:00:00 on my local system (XP), Dev, Test, Staging (2003) 12:00:00 on Prod (2003)

Thanks for the quick replies

Regional settings and DateTime format are the same.

flag
2  
Are we sure this is the Challenge of the Week? – Eric Jun 5 at 15:28
For me it is :) – chris Jun 5 at 15:34
I think by box he means a computer and not a textbox! – DrG Jun 5 at 15:38
What is the full value being returned? Is this a formatting issue or are different times being displayed? How much of the system (web, Nhibernate & SQL Server) are on different machines? How do you ensure that your staging and production environments are identical? Can you track the value at different points in the system to see where it changes? – Matt Lacey Jun 5 at 15:56
2 machines web and sql... I will need to turn up logging. Funeral beats prod issues.. Thanks for ideas. Back in a few hours – chris Jun 5 at 16:25

4 Answers

vote up 10 vote down check

Regional/display settings for date/time formats

link|flag
A vague answer to a vague question. Could you expand on how these would produce that type of behavior? – tvanfosson Jun 5 at 15:30
more fun to make people guess – Matthew Whited Jun 5 at 15:49
tvanfosson: the time (and date) formats can be configured to display on a per machine basis. If the machiens were configured to be in different timezones 'now' would also be different. – Matt Lacey Jun 5 at 15:51
SQL Profile is showing time is back to 00:00:00 today... adding a globalization tag to system.web in prod and will continue to investigate. Thanks for the ideas. – chris Jun 8 at 15:29
vote up 3 vote down

12 hour vs 24 hour clock

link|flag
vote up 5 vote down

It's always midnight, the display might be affected by the machine's local culture settings.

You might be interested in the Turkey Test for a whole slew of other things that can be affected by culture, like parsing doubles, formatting dates and times, etc.

link|flag
vote up 5 vote down

In the control panel, you can define the way it displays in regional settings:

H:mm:ss -> 24 hours you will see 00:00

h:mm:ss -> 12 hours format with am/pm you will see 12:00 am

link|flag
I hope you right! Hard to believe we haven't caught this before... Thanks – chris Jun 5 at 15:39

Your Answer

Get an OpenID
or

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