Hello,

It should be possible to connect Oracle to the MySQL (or other) database using a DBlink (using a MySQL ODBC driver)
the tables could then be copied using PLSQL.
Maybe you could link directly to Oracle and copy the code using MySQL procedures or scripts (I have more experienc of Oracle which works quite well as I described)

This way, you can avoid use of external files and CSV etc. It is very likely quicker since you can use bulk loads or 'select into' routines once you have the right table structures and field type in place. This is a technique that I have used for ETL and data integration and it is very manageable.
You can trap errors using cursors if the data has anomalies.

Kevin O'Neill

----- Original Message ----- From: "Johan De Meersman" <vegiv...@tuxera.be>
To: "Shawn Green (MySQL)" <shawn.l.gr...@oracle.com>
Cc: "Sydney Puente" <sydneypue...@yahoo.com>; <mysql@lists.mysql.com>
Sent: Wednesday, November 17, 2010 8:58 AM
Subject: Re: export db to oracle


On Wed, Nov 17, 2010 at 1:43 AM, Shawn Green (MySQL) <
shawn.l.gr...@oracle.com> wrote:

On 11/16/2010 15:14, Sydney Puente wrote:

Hello,

How can I export a mysql 5.0.45 db to Oracle? mysql is going to stau but I
need
to pass the data to oracle, just so the data can be transfered.
I have carried out a mysql dump. This seems fine.create table etc. about
20 MB
in total.

Any ideas? It is on Redhat if that makes a difference.


I suggest you also look at the syntax for SELECT INTO OUTFILE, too. Dumps
are usually scripts of SQL statements that Oracle may not read
appropriately.


I'm not quite sure which formats Oracle reads in, although CSV is probably a
good guess.

if you disable mysqldump's extended insert syntax, however, I think the
actual insert statements should be perfectly fine for most any database. You may need to tweak create statements for datatypes and syntax, though; it may
be easier to just recreate the emtpy tables by hand.

I think I also have vague memories of an option to use ANSI-SQL standard
syntax, although that might just as well have been some third-party tool.

And, speaking of third-party tools: tOra can (if well-compiled) be used to
manage both MySQL and Oracle; maybe that nice tool can help you.

--
Bier met grenadyn
Is als mosterd by den wyn
Sy die't drinkt, is eene kwezel
Hy die't drinkt, is ras een ezel



--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/mysql?unsub=arch...@jab.org

Reply via email to