MySQL Cannot Convert Value '0000-00-00 00:00:00' From Column XX To TIMESTAMP

Posted December 19, 2008 at 4:15 PM by Ben Nadel

Tags: ColdFusion, SQL

When I first started using the MySQL database engine, I would get this error from time to time after doing data transfer:

MySQL Cannot Convert Value '0000-00-00 00:00:00' From Column XX To TIMESTAMP

For a long time, I just assumed that I was messing something up in the data transfer (which I may very well have been doing). But then, I got it again last week on an existing database with a new ColdFusion datasource, so I figured I'd Google what was going on. Luckily, Andy Jarrett had the answer on hand; I needed to modify the connection string of the ColdFusion MySQL datasource to include:

zeroDateTimeBehavior=convertToNull

Here is a screen shot of this activity:


 
 
 

 
MySQL Datasource Connection String Update To Handle Error: MySQL Cannot Convert Value '0000-00-00 00:00:00' From Column XX To TIMESTAMP.  
 
 
 

I don't know how the zero dates get into the database in the first place (why NULL dates were not stored), but at least I know how to deal with this corrupt data.



Reader Comments

Dec 19, 2008 at 7:31 PM // reply »
19 Comments

That is a handy bit. We used to frequently get this when I started here 3.5 years ago and coding/db standards were a bit lax. I was used to MSSQL where zero and partial dates are not allowed along with strict coding standards.

MySQL has the *feature* of storing partial/zero dates, which may seem like a good idea, sometimes, so you don't have to store off separate data parts when you only know partial dates (like mm/dd for a birthday, but you don't know the year). The idea of storing invalid dates still seems a bit odd to me. It seems like it might be handy for patterns as well (how often to run a process)...

However, java dates, and thus ColdFusion, throw on invalid dates. So can't use'em. Eventually we weeded out the frequency of this issue with implementing stronger coding and database standards. Now the only time this occurs, we know it is a data corruption issue. I am therefore half inclined to NOT update our db connection to this behaviour because it would mask data corruption... hum.....

I also would guess with the latest versions of mySQL there is a switch to make it behave like traditional databases if you have access to the db server.

K, I just checked on that. Version 5.0.18 and previous (at least) no longer allow partial dates... er...sort of, it looks like bug reports went back and forth and it seems they may have reverted after some debate -- not documented very well on this point. As of 5.0.41 at least (and it appears they reverted if you download older versions anew) you can again use partials. Zero dates are still and always have been allowed and are, by MySQL folk, considered a valid value as the Gregorian Calendar is 0 -> 9999 years.... so, although 0000-00-00 00:00:00 is the beginning of time, so to speak, java date will spit it out (along with partial dates). It does not appear there is currently a switch to not allow zero date in MySql.


Dec 21, 2008 at 4:29 AM // reply »
10 Comments

MySQL in "traditional" mode does not allow zero dates.
If you do not want to run MySQL in full "traditional" mode (there are some not-always-desired implications for multi-row updates with tat mode), you can just enable NO_ZERO_DATE mode.

http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html

and while you are there changing MySQL mode, you may as well enable NO_BACKSLASH_ESCAPES mode to further protect yourself from SQL injection attacks...


Dec 22, 2008 at 8:21 AM // reply »
11,314 Comments

@Williambq,

Thanks for the insight. I can understand the requirement to store a zero date from time to time, but for the most part, I don't even know how it gets into the database! I haven't looked at the code that was causing it yet, but I can only assume that NULL should be inserted rather than what is currently there.

@Azadi,

Thanks for the link to the modes page; that will be quite useful.


Dec 22, 2008 at 11:40 AM // reply »
19 Comments

@Azadi : Thanks! The two commands relevant
NO_ZERO_DATE
NO_ZERO_IN_DATE since 5.02
Plus needs to be in strict mode. Gonna go change that right now.
@Ben : We find this 'corruption' is most likely to occur during database transfers/updates/restores that fail partially. Occasionally, a particular table just gets corrupted. Datetime fields that get added when default = null is forgotten to be set will default to zero dates as well. I have never seen it be ColdFusion that causes this as long as the default is already set to null on a datetime/timestamp field.


Dec 22, 2008 at 12:05 PM // reply »
19 Comments

I was making sure our settings were on for dates getting errors. I finally noticed at the bottom of that mode page I see that setting the db to 'Traditional', which we have been doing here in the ini/cfn (live is on ubunto, dev/units are windows) files since 5.0x-ish automatically sets the other values:

TRADITIONAL-
Equivalent to STRICT_TRANS_TABLES, STRICT_ALL_TABLES, NO_ZERO_IN_DATE, NO_ZERO_DATE, ERROR_FOR_DIVISION_BY_ZERO, NO_AUTO_CREATE_USER.


Dec 22, 2008 at 3:31 PM // reply »
11,314 Comments

@Williambq,

That makes sense; I think the last time I got the error was when I pulled a database down from production to a local copy. It didn't throw any errors during the transfer, but that's when the dates started showing up (as far as I know - it was the first time it ran locally).


Dec 23, 2008 at 12:54 PM // reply »
36 Comments

Interesting I ran into something similar for midnight times and the default driver for mysql in CF 8. I intended to update the driver, but have totally forgotten since then. http://www.usefulconcept.com/index.cfm/2008/3/21/MySQL-JDBC-505-bug-with-TIME-column-and-midnight


Jul 5, 2010 at 6:31 AM // reply »
1 Comments

Thanks Joshua - that's exactly the information I was looking for.


Aug 4, 2010 at 11:51 AM // reply »
15 Comments

Just been tearing my hair out on this one after updating from mysql 3 driver to 4/5. I don't have access to the administrator so had to go through the tables with incorrect dates (ouch). Thanks!


Aug 8, 2010 at 6:30 PM // reply »
11,314 Comments

@Matt,

No problem my man. Sorry your dates got messed up; I've been there and it is annoying!


Nov 19, 2010 at 12:28 PM // reply »
2 Comments

Thanks again Ben! One question/thought that I'm probably not looking at quite right. I am updating an app that uses your POI Utility to import XL files and they want to add in a time from XL for the import. It seems POI converts a time from XL into an int 0-1. But it uses 0 for midnight (12:00:00 AM), and it seems that MySQL would store 00:00:00 for midnight but then it obviously cannot get it w/o an error and differentiate that from a true NULL. Does that make any rambling sense?


Dec 13, 2010 at 10:28 AM // reply »
7 Comments

Woohoo Ben saves the day again. No need for MySQL documentation with you around


Aug 3, 2011 at 2:51 PM // reply »
4 Comments

This is awesome, thanks for this. It was starting to piss me off a little!


Aug 28, 2011 at 2:45 PM // reply »
1 Comments

Thanks for this post! Helped me kill a bug I caused in the expansion of some tables and adding of "fill data". I suppose to can not have a date that goes back to the beginning of A.C.!


Mar 11, 2012 at 2:15 PM // reply »
4 Comments

Thank you so much!!! It Worked.


Apr 4, 2012 at 4:25 AM // reply »
1 Comments

i want to know how can i change the time format 08:00 pm to 20:00:00

how can i do this


Oct 16, 2012 at 3:40 PM // reply »
40 Comments

This connection string works up to CF10. When you try to create a DSN with this in your connection string in CF10, you will encounter an error:

  • Connection verification failed for data source: pcbcrm
  • java.sql.SQLException: The connection property 'zeroDateTimeBehavior' only accepts values of the form: 'exception', 'round' or 'convertToNull'. The value 'convertToNull ' is not in this set.
  • The root cause was that: java.sql.SQLException: The connection property 'zeroDateTimeBehavior' only accepts values of the form: 'exception', 'round' or 'convertToNull'. The value 'convertToNull ' is not in this set.

It has been reported as a bug: https://bugbase.adobe.com/index.cfm?event=bug&id=3197321



Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
Jun 19, 2013 at 11:33 AM
Filter vs. ngHide With ngRepeat In AngularJS
In your assessment, is it correct to say that given a list of say 500 items its more performant to use the `ngHide` method over the `filter` method? ... read »
Jun 19, 2013 at 10:18 AM
ColdFusion Path Usage And Manipulation Overview
Anyone happen to know if the file created by getTempFile will be automatically removed at any point? Nothing mentioned in the docs, and restarting CF doesn't remove them, so it seems it needs manu ... read »
Jun 19, 2013 at 9:41 AM
Working With Inherited Collections In AngularJS
I actually just ran into this same situation with a demo I was putting together. Your implementation of multi-lvl $scope's > Mine :) ... read »
Jun 19, 2013 at 8:17 AM
My Experience With AngularJS - The Super-heroic JavaScript MVW Framework
@Prateek, to match a word or text you should use .toContain('word') that's a jasmine reference. website is : http://pivotal.github.io/jasmine/ ... read »
Jun 19, 2013 at 8:10 AM
My Experience With AngularJS - The Super-heroic JavaScript MVW Framework
Hi Guys, Actually i am doing e2e test of angular js of my project but i am not getting one thing that is how to press enter key through the test when my form is filled as i am not using a button but ... read »
Jun 18, 2013 at 9:20 PM
Mapping AngularJS Routes Onto URL Parameters And Client-Side Events
I couldn't find examples of passing multiple arguments using the when() routing statement so figured out through trial and error that you can pass multiple arguments using the following format: .whe ... read »
Jun 18, 2013 at 3:39 PM
Experimenting With The Amazon Simple Storage Service (S3) API Using ColdFusion
Hi Ben, THANKS! While not bleeding edge, it is new to me & I like learning new things every day! ... read »
Jun 18, 2013 at 12:30 PM
Disabling Auto-Correct And Auto-Capitalize Features On iPhone Inputs
Also spellcheck="false" should be mentioned as part of html5 specs ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools