Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us
Recent Posts
Recent Posts
Popular Topics
Popular Topics
Home
Search
Members
Calendar
Who's On
Home
»
SQL Server 2008
»
T-SQL (SS2K8)
»
Sql Server 2008: Conversion From Text data...
Sql Server 2008: Conversion From Text data type to Datetime
Rate Topic
Display Mode
Topic Options
Author
Message
Teee
Teee
Posted Tuesday, December 11, 2012 4:25 AM
SSC Rookie
Group: General Forum Members
Last Login: Tuesday, February 19, 2013 1:23 AM
Points: 31,
Visits: 121
Hi All,
How do I convert a text data type column to datetime?
The query below returns this error: Explicit conversion from data type text to datetime is not allowed.
SELECT CONVERT(DATETIME, vchValue) FROM dtlConfiguration WHERE vchParameter = 'LastRTADImport'
The data in 'vchValue' column is in this format: 'Jul 21 2010 10:15AM'
Regards
Teee
Post #1395028
anthony.green
anthony.green
Posted Tuesday, December 11, 2012 4:28 AM
SSCertifiable
Group: General Forum Members
Last Login: Friday, April 12, 2013 3:51 AM
Points: 5,075,
Visits: 4,831
Convert to VARCHAR then convert to datetime.
CONVERT(DATETIME,CONVERT(VARCHAR,vchValue))
The following link details what can and cannot be converted
http://msdn.microsoft.com/en-us/library/ms187928.aspx
Want an answer fast? Try here
How to post data/code for the best help - Jeff Moden
Need a string splitter, try this - Jeff Moden
How to post performance problems - Gail Shaw
CrossTabs-Part1
&
Part2 - Jeff Moden
SQL Server Backup, Integrity Check, and Index and Statistics Maintenance - Ola Hallengren
Managing Transaction Logs - Gail Shaw
Troubleshooting SQL Server: A Guide for the Accidental DBA - Jonathan Kehayias and Ted Krueger
Post #1395032
nigelrivett
nigelrivett
Posted Tuesday, December 11, 2012 4:29 AM
Old Hand
Group: General Forum Members
Last Login: Monday, January 28, 2013 1:45 AM
Points: 386,
Visits: 199
Are you sure that is causing the problem?
This should work
select convert(datetime, 'Jul 21 2010 10:15AM')
Could be due to your settings maybe.
Cursors never.
DTS - only when needed and never to control.
Post #1395033
anthony.green
anthony.green
Posted Tuesday, December 11, 2012 4:31 AM
SSCertifiable
Group: General Forum Members
Last Login: Friday, April 12, 2013 3:51 AM
Points: 5,075,
Visits: 4,831
nigelrivett (12/11/2012)
Are you sure that is causing the problem?
This should work
select convert(datetime, 'Jul 21 2010 10:15AM')
Could be due to your settings maybe.
The question and topic title say they are converting from TEXT to DATETIME, you cannot convert TEXT directly to DATETIME, you have to do an implicit conversion to VARCHAR then to DATETIME
Want an answer fast? Try here
How to post data/code for the best help - Jeff Moden
Need a string splitter, try this - Jeff Moden
How to post performance problems - Gail Shaw
CrossTabs-Part1
&
Part2 - Jeff Moden
SQL Server Backup, Integrity Check, and Index and Statistics Maintenance - Ola Hallengren
Managing Transaction Logs - Gail Shaw
Troubleshooting SQL Server: A Guide for the Accidental DBA - Jonathan Kehayias and Ted Krueger
Post #1395035
Teee
Teee
Posted Tuesday, December 11, 2012 4:39 AM
SSC Rookie
Group: General Forum Members
Last Login: Tuesday, February 19, 2013 1:23 AM
Points: 31,
Visits: 121
Thanks for the link and the example posted above works perfectly.
Post #1395040
anthony.green
anthony.green
Posted Tuesday, December 11, 2012 4:41 AM
SSCertifiable
Group: General Forum Members
Last Login: Friday, April 12, 2013 3:51 AM
Points: 5,075,
Visits: 4,831
Teee (12/11/2012)
Thanks for the link and the example posted above works perfectly.
Happy to help
Want an answer fast? Try here
How to post data/code for the best help - Jeff Moden
Need a string splitter, try this - Jeff Moden
How to post performance problems - Gail Shaw
CrossTabs-Part1
&
Part2 - Jeff Moden
SQL Server Backup, Integrity Check, and Index and Statistics Maintenance - Ola Hallengren
Managing Transaction Logs - Gail Shaw
Troubleshooting SQL Server: A Guide for the Accidental DBA - Jonathan Kehayias and Ted Krueger
Post #1395041
« Prev Topic
|
Next Topic »
Permissions
You
cannot
post new topics.
You
cannot
post topic replies.
You
cannot
post new polls.
You
cannot
post replies to polls.
You
cannot
edit your own topics.
You
cannot
delete your own topics.
You
cannot
edit other topics.
You
cannot
delete other topics.
You
cannot
edit your own posts.
You
cannot
edit other posts.
You
cannot
delete your own posts.
You
cannot
delete other posts.
You
cannot
post events.
You
cannot
edit your own events.
You
cannot
edit other events.
You
cannot
delete your own events.
You
cannot
delete other events.
You
cannot
send private messages.
You
cannot
send emails.
You
may
read topics.
You
cannot
rate topics.
You
cannot
vote within polls.
You
cannot
upload attachments.
You
may
download attachments.
You
cannot
post HTML code.
You
cannot
edit HTML code.
You
cannot
post IFCode.
You
cannot
post JavaScript.
You
cannot
post EmotIcons.
You
cannot
post or upload images.
Copyright © 2002-2013 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use.
Report Abuse.