Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6742965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:54:18+00:00 2026-05-26T11:54:18+00:00

Lets say I have a datetime from my database, such as: 2011-10-24 00:00:00.000 .

  • 0

Lets say I have a datetime from my database, such as: 2011-10-24 00:00:00.000. I would like to convert this into 24/10/2011, but I can’t find the native SQL Server way to do this, and I’d rather no do this in the code after I run my query.

I’ve tried doing something as follows (as per the manual)

select CONVERT(datetime, '2011-10-24 00:00:00.000', 103);

But that doesn’t work out, my result is:

Msg 242, Level 16, State 3, Line 1
The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value.

I suspect this might be due to the decimal precision, or the time part of this, but I’m not sure how to go about this without resulting to some string-hacking-regex-replace nonsense (and I’d rather no do that, I might as well end up doing the conversion after the query if I do that).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T11:54:19+00:00Added an answer on May 26, 2026 at 11:54 am

    If I read the manual correctly, you should be using stlye 120 “ODBC canonical” – no??

    Try:

    select CONVERT(datetime, '2011-10-24 00:00:00.000', 120);
    

    Works on my machine 🙂 This gives you a SQL Server DATETIME to work with.

    If you want to convert that further into 24/10/2011, use a second CONVERT to convert into a VARCHAR string:

    select CONVERT(VARCHAR(50), CONVERT(datetime, '2011-10-24 00:00:00.000', 120), 103)
    

    That gives me:

    24/10/2011
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Another easy one hopefully. Let's say I have a collection like this: List<DateTime> allDates;
I would like to subtract seconds from a date, for example: Lets say I
Lets say I have a database table called Scrape possibly setup like: UserID (int)
I have a DateTime column. I want to extract all records, lets say, from
Lets say i have a TextBlock thats bound to a DateTime, is there any
Lets say I have a table with the following columns: Qty, INTEGER SaleDate, DATETIME
Lets say have this immutable record type: public class Record { public Record(int x,
I have a linq-to-sql query that groups results by DateTime, something like this: var
If we have a timer that starts from lets say CURRENT_TIMESTAMP - 1 Hour
I want to convert date of birth from a text file.Let's say, I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.