vote up 0 vote down star

how to change these Date Time strings to sql server DateTime Type:

"Thu May 07 19:19:27" 
"Thu May 07 19:19:33" 
"Thu May 07 19:19:34" 
"Thu May 07 19:19:34"
"Thu May 07 19:19:35"
flag
1  
A comment on the edit: I'd put the datetime strings in quotes (for colorization purposes), and also change the sentence above to clarify that they are strings. But I don't have enough rep... :P – Tomas Lycken May 12 at 10:08

3 Answers

vote up 2 vote down check

Here's a snippet of TSQL that you may be able to use in a stored procedure or function to convert the strings into SQL DateTime.

  DECLARE
     @Year char(4), /* the DateTime needs a year */
     @DateString varchar(20),
     @DateVariable DateTime;

  SET @Year = '2009';
  SET @DateString = 'Thu May 07 19:19:27';  /* any of the dates in your list */

  SET @DateVariable = CONVERT(DateTime, @Year 
                            + SUBSTRING(@DateString, 4, LEN(@DateString)));

  /*
      After the conversion, @DateVariable contains '2009-05-07 19:19:27.000'
  */
link|flag
thank you very much. Generally i don't post questions on internet because getting answers sometime takes hours to days. i always tries to get references from posts which already has been answered. today i was attending a meeting and was doing some timepass. suddenly, i just posted a question (i was struggling with this problem since morning.) on this site first time. and, within minutes i got 4-5 replies. i am very very thankful to all of you. Now, on this is my favorite place for any programming related queries. you people rocks. once again, thank you very much to all of you. vineet – vineet May 12 at 11:32
vote up -4 vote down

Use the DateTime.TryParse() method to convert it to at DateTime object in C#, and then send it in a parameter to SQL.

link|flag
He never said he was using C#, or even .Net – Matthew Flaschen May 12 at 10:16
vote up 0 vote down

Are you looking at converting those date strings into DateTime values using an SQL stored function/procedure or in some external program?

link|flag

Your Answer

Get an OpenID
or

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