I have a string in the format:
YYYY-MM-DDDDTHH:MM:SS
This comes from a data feed that I need to import into a SQL Server database so we can do proper reporting off it (sort data by date and time if necessary).
I was going to just split this and manually build the data/time using the parts of the string, but I'm wondering if there's a more elegant way to do this? (Maybe there's an obscure date formatting function I can call that I'm not aware of?)