I want to convert a string like this:
\'10/15/2008 10:06:32 PM\'
into the equivalent DATETIME value in Sql Server.
In Oracle, I wou
This page has some references for all of the specified datetime conversions available to the CONVERT function. If your values don't fall into one of the acceptable patterns, then I think the best thing is to go the ParseExact route.