MySQL Forums
Forum List  »  Oracle

Re: porting data from oracle to mysql
Posted by: Josh Chamas
Date: November 24, 2004 12:06AM

manish singh wrote:
> iam using 4.0.17
>
> ok
> josh let me ask you something about data
> transformation i mentioned before
>
> taking the date field, if you transform the date
> from mm/dd/yyyy to yyyy-mm-dd
> and put it inside the mysql table why do you get
> 0000-00-00?
>

Assuming you were talking about an INSERT method where
you have created a batch of insert statements to run ...

I would think that this would look like 12/12/2000 which
sets up a division if you access the code.

mysql> select 12/12/2004;
+------------+
| 12/12/2004 |
+------------+
| 0.0005 |
+------------+

So when MySQL converts this to a date type, it is no surprise to me
that something like .0005 becomes a 0.

-------

If this is a LOAD DATA INFILE scenario, then I would suggest reading
this page very carefully about how to use it and represent data precisely:

http://dev.mysql.com/doc/mysql/en/LOAD_DATA.html

Regards,

Josh

Josh Chamas
Director, Professional Services
MySQL Inc., www.mysql.com
Get More with MySQL! http://www.mysql.com/consulting

Options: ReplyQuote


Subject
Views
Written By
Posted
17115
October 25, 2004 12:26AM
13439
November 16, 2004 06:54PM
45069
November 16, 2004 09:47PM
14472
November 17, 2004 09:54PM
10628
November 17, 2004 11:36PM
8372
November 21, 2004 10:05PM
13983
November 22, 2004 04:18PM
6731
November 23, 2004 12:29AM
6241
November 23, 2004 01:07PM
5808
November 23, 2004 11:39PM
Re: porting data from oracle to mysql
6185
November 24, 2004 12:06AM
5208
November 24, 2004 02:10AM
6416
November 24, 2004 03:36AM
4577
November 24, 2004 04:43AM
5022
November 24, 2004 03:49PM
5073
November 25, 2004 01:52AM
5156
January 13, 2005 01:42AM
7715
September 05, 2007 10:18AM
8419
January 14, 2008 02:38PM
6871
February 09, 2005 01:22AM
6289
February 10, 2005 05:18PM
6501
March 14, 2007 03:02AM
6104
February 06, 2009 02:07PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.