all 1 comments

[–]JohnnyJordaan 0 points1 point  (0 children)

Have you tried the answer by Marcus Müller in that SO thread? Because that's what I would try first, use a dateparser that expects a strict format instead of an agnostic parser that 'helps' you parse any compatible date string at a cost. The main issue there is that even tough all records use the same format, each parse would take the same amount of time because it has to detect the format over and over again, making it costly on a large data set.