I have an older database that came from MS SQL and was imported long ago to mysql. It seems to have some bad dates that I need to fix...
some appear in the format:
0000-00-00 00:00:00
error in cf search says:
can not be represented as java.sql.Timestamp
(I think they are talking about this field...)
so it's hard to update the db when it keeps erroring out...
also I tried searching with phpmyadmin in the field for: LIKE and 0000
but shows empty query
i noticed that newer TS seem to have an extra .0 at the end like:
0000-00-00 00:00:00 = old problem?
2012-10-01 00:00:00.0 = new ok...
Q: How can I get around this?