vote up 3 vote down star

Is there a simple way to convert a date stored in a varchar in the format mon-yy (e.g. "Feb-09") to a datetime which will convert any invalid values to null.

I'm currently using string manipulation combined with a case statement but it's rather cumbersome.

flag

76% accept rate
What kind of invalid values could there be? – Guffa Feb 26 at 16:13
All sorts of rubbish really. I can filter out the invalid entries easily enough though. One example is "Reinstated November 2007" ... – mdresser Feb 26 at 16:20
I'd give you the usual rant about storing as DateTime in the first place, but I suspect you already know that it's your predecessor who did it wrong. – Joel Coehoorn Feb 26 at 16:29
Lol, that feels familiar. ;) Perhaps a LIKE '___-[0-9][0-9]' is useful? – Guffa Feb 26 at 16:32
@Joel Coehohoorn Yes you suspected right, I'm working with data imported from a MS Works 'database'. – mdresser Feb 27 at 9:14

3 Answers

vote up 5 vote down check

For valid values you can just put a day on it and it's a complete date:

convert(datetime,'01-' + 'Feb-09',120)
link|flag
Perfect! Nice and simple, just how I like it! – mdresser Feb 26 at 16:17
vote up 0 vote down
CONVERT( DATETIME, "Feb-09", 64, 7 )
link|flag
That doesn't seem to work for me :( I've tried the following: select convert(datetime, MyFieldName, 64, 7) from MyTable – mdresser Feb 26 at 16:13
vote up 2 vote down

This will do it.

SELECT convert(datetime,'01-' + 'Feb-09',120)
link|flag
....a bit slow off the mark. – John Sansom Feb 26 at 16:19

Your Answer

Get an OpenID
or

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