472,981 Members | 1,252 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,981 software developers and data experts.

Oracle to Mysql (dates) Help please

Hi all,

I'm trying to export a view tables from a Oracle database to a Mysql
database. I create insert statements (they look alright), but it all goes
wrong when I try to execute them in Mysql, because the dates must have
quotes on each side.
I just don't know how make the dates right.
Well I'll just show you the code and some insert statements it generates.
Could anyone please help me?

Thanks,

Arjen

####Code####

import cx_Oracle
tabellen=["machine"]
con_oracle=cx_Oracle.connect("bla/bla")
c_oracle=con_oracle.cursor()

import MySQLdb
my=MySQLdb.Connect("localhost", db="bla")
my_mysql=my.cursor()
for tabel in tabellen:
print tabel
c_oracle.execute("select * from %s" % tabel)
a_oracle=c_oracle.fetchone()
#file=open("%s.sql" % tabel, 'w')
while a_oracle != None:
b=str(a_oracle)
ins="insert into %s values %s;\n" % (tabel, b)
#file.write(ins)
my_mysql.execute(ins)
#print ins

a_oracle=c_oracle.fetchone()
file.close()

con_oracle.close()

my.close()
##insert statement###

insert into machine values ('230KM', ' ', '230KM', 1980-01-01 00:00:00,
2035-01-01 00:00:00, 1, 100, 'asap', 'NO', 0, 0, 'corrugator', 2003-12-04
06:00:00, 1970-01-01 01:00:00, ' ', 'normal', 0.0, 0.0, 7, ' ', ' ',
'normal', ' ', ' ', 'A', 2003-12-04 09:42:14, 82766);
Jul 18 '05 #1
5 3420
duikboot fed this fish to the penguins on Sunday 11 January 2004 05:31
am:

ins="insert into %s values %s;\n" % (tabel, b)
#file.write(ins)
my_mysql.execute(ins)
#print ins
Don't do that.

It appears you are trying to build a string with multiple insert
statements for a single execute call.

If you accept the overhead of single inserts, the execute can do the
parsing and theoretically will properly quote needed fields...

my_mysql.execute("insert into %s values %s", (tabel, b))
If you really want a single execute, look at the specs for executemany
(you'll need to build a tuple of tuples: ( (tabel1, b1), (tabel2, b2),
...., (tabelN, Bn) ) but the rest looks similar)

-- ================================================== ============ <
wl*****@ix.netcom.com | Wulfraed Dennis Lee Bieber KD6MOG <
wu******@dm.net | Bestiaria Support Staff <
================================================== ============ <
Bestiaria Home Page: http://www.beastie.dm.net/ <
Home Page: http://www.dm.net/~wulfraed/ <


Jul 18 '05 #2
Dennis Lee Bieber fed this fish to the penguins on Sunday 11 January
2004 11:02 am:

(you'll need to build a tuple of tuples: ( (tabel1, b1), (tabel2, b2),
..., (tabelN, Bn) ) but the rest looks similar)
Whoops, slight mistake there -- I hadn't quite noticed that the first
term was the relation itself, and each Bx contained all the values for
one row.

Someone else has the more correct variation...

-- ================================================== ============ <
wl*****@ix.netcom.com | Wulfraed Dennis Lee Bieber KD6MOG <
wu******@dm.net | Bestiaria Support Staff <
================================================== ============ <
Bestiaria Home Page: http://www.beastie.dm.net/ <
Home Page: http://www.dm.net/~wulfraed/ <


Jul 18 '05 #3
Sorry, I can't find it. Can you quote it for me, please?
"Dennis Lee Bieber" <wl*****@ix.netcom.com> schreef in bericht
news:p7************@beastie.ix.netcom.com...
duikboot fed this fish to the penguins on Tuesday 13 January 2004 01:13
am:


Could you please explain that?
See the reply

<ma**************************************@python.o rg> (Pieter Claerhout) -- though according to my documents, the method is
executemany(), not execute_many().
--
> ================================================== ============ <
> wl*****@ix.netcom.com | Wulfraed Dennis Lee Bieber KD6MOG <
> wu******@dm.net | Bestiaria Support Staff <
> ================================================== ============ <
> Bestiaria Home Page: http://www.beastie.dm.net/ <
> Home Page: http://www.dm.net/~wulfraed/ <

Jul 18 '05 #4
duikboot fed this fish to the penguins on Wednesday 14 January 2004
01:07 am:


Sorry, I can't find it. Can you quote it for me, please?
Hopefully without offending anyone... Formatting may be a bit off,
since I'm including the basic headers for completeness...

RE: Oracle to Mysql (dates) Help please

From:

Pieter Claerhout <Pi**************@Creo.com>

Date:

Sunday 11 January 2004 07:25:09 am

To:

duikboot <ad@ad.nl>, py*********@python.org

Groups:

comp.lang.python

no references

What your seeing in the insert statement is not a string, but is a DateTime object, which needs to be converted to the correct representation for the target database.

Prepared statements are the best option here. With prepared statements, the data conversion happens automagically.

The code will then look as follows:

## BEGIN CODE
import cx_Oracle
import MySQLdb

tabellen = [ 'machine' ]

connO = cx_Oracle.connect( 'bla/bla' )
cursO = connO.cursor()
connM = MySQLdb.Connect( 'localhost', db='bla' )
cursM = connM.cursor()

for tabel in tabellen:
print tabel
cursO.execute( 'select * from ' + tabel )
results = cursO.fetchall()
cursM.execute_many(
'insert into ' + tabel + ' values ( %s,%s,%s,%s,%s )',
results
)
# END CODE

A few notes:
- This uses the execute_many function which will speed up the insert process quite a lot.
- Instead of fetching one record at a time, all records are fetched at once. - The number of "%s" in the insert statement will depend on the number of columns in the target table. You could look at the first row of the results variable to know how many columns there are in the table.
- The type of placeholders in the SQL statement depend on the database.
More info on execute_many and other can be found on:
http://www.python.org/peps/pep-0249.html (look for paramstyle and
execute_many).

Cheers,
pieter

Creo
pieter claerhout | product support prinergy | tel: +32 2 352 2511 |
pi**************@creo.com | www.creo.com

IMAGINE CREATE BELIEVE(tm)
-----Original Message-----
From: duikboot [mailto:ad@ad.nl]
Sent: 11 January 2004 14:32
To: py*********@python.org
Subject: Oracle to Mysql (dates) Help please
Hi all,

I'm trying to export a view tables from a Oracle database to a Mysql
database. I create insert statements (they look alright), but it all goes wrong when I try to execute them in Mysql, because the dates must have
quotes on each side.
I just don't know how make the dates right.
Well I'll just show you the code and some insert statements it generates. Could anyone please help me?

Thanks,

Arjen

####Code####

import cx_Oracle
tabellen=["machine"]
con_oracle=cx_Oracle.connect("bla/bla")
c_oracle=con_oracle.cursor()

import MySQLdb
my=MySQLdb.Connect("localhost", db="bla")
my_mysql=my.cursor()
for tabel in tabellen:
print tabel
c_oracle.execute("select * from %s" % tabel)
a_oracle=c_oracle.fetchone()
#file=open("%s.sql" % tabel, 'w')
while a_oracle != None:
b=str(a_oracle)
ins="insert into %s values %s;\n" % (tabel, b)
#file.write(ins)
my_mysql.execute(ins)
#print ins

a_oracle=c_oracle.fetchone()
file.close()

con_oracle.close()

my.close()
##insert statement###

insert into machine values ('230KM', ' ', '230KM', 1980-01-01 00:00:00, 2035-01-01 00:00:00, 1, 100, 'asap', 'NO', 0, 0, 'corrugator', 2003-12-04 06:00:00, 1970-01-01 01:00:00, ' ', 'normal', 0.0, 0.0, 7, ' ', ' ',
'normal', ' ', ' ', 'A', 2003-12-04 09:42:14, 82766);

http://mail.python.org/mailman/listinfo/python-list


-- ================================================== ============ <
wl*****@ix.netcom.com | Wulfraed Dennis Lee Bieber KD6MOG <
wu******@dm.net | Bestiaria Support Staff <
================================================== ============ <
Bestiaria Home Page: http://www.beastie.dm.net/ <
Home Page: http://www.dm.net/~wulfraed/ <


Jul 18 '05 #5
Thank you all very much for your help.

I'll think it will work now (don't know yet, I'll work on it later this
week)
Cheers Arjen
(If you're interested, I will post the solution that worked for me)
Jul 18 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Mark Wilson CPU | last post by:
A colleague has written a prototype program in PHP, using a MySQL database. It's a relatively simple app, with a restricted set of mysql commands used (see below). The MySQL DB is being replaced...
0
by: JWM | last post by:
I am trying to implement Oracle connection pooling for the following code, which was written by someone else. Here is my main question -- this java file creates code that is executed every hour,...
0
by: Nath | last post by:
Hello, I use to work with Oracle for several years. Now, I must work with MySql. I would like to know, if possible, how to "transfer" this command from oracle to a new command mysql: ...
133
by: jonathan | last post by:
hey all, I realize that this question might pop up from time to time, but I haven't seen it a while and things might of changed, so - Right now (July 2004) how does mysql stand up in...
1
by: Cern | last post by:
Is it somebody out there who has made a migration from an Oracle server to an MySQL server?? The scenario is as simply: I've got a Oracle 8 server with a database with content that I want to...
4
by: Jan Olsen | last post by:
We're planning an SQL-based solution, possibly mySQL for Windows or Linux. But some in the organization might favor Oracle. Are there any particular pitfalls of using mySQL instead of Oracle? ...
0
by: Jaye | last post by:
Hi. I was wondering if anyone knows how to convert dates in the SAS format into an Oracle date format without the use of third party software. I'd like to be able to run a procedure that would...
4
by: --CELKO-- | last post by:
I need to convert a bunch of DB2 triggers to Oracle. Is there any kind of tools for this?
0
amitpatel66
by: amitpatel66 | last post by:
Hi All, Find below some useful information about Time Zone Conversion in oracle. Hope this would be helpful for many of them since all the real time projects that we work in follow different time...
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.