MySQL Forums
Forum List  »  Oracle

Re: What an Oracle DBA needs to do for migrating from Oracle to MySQL?
Posted by: John Moll
Date: June 14, 2006 12:22PM

You can provide your customer with flat text files as a data and a loader script that customer can execute to load the data from flat files.
Create a SQL script "LOAD DATA INFILE .... " for each extracted table or partition to load the data from txt file into MySQL

Oracle does not really have a decent unload utility into flat file. You can use spool if the amount of data is pretty small.
If you need to send them a lot of data (dozens of giga bytes ) then spool will not work since it uses conventional path. You may want to consider some third party high performance tool that uses direct unload like Fastreader www.wisdomforce.com . Fastreader will automatically create all load scripts for you as well so your customer will have only simply execute one script to load everything you sent him into MySQL

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: What an Oracle DBA needs to do for migrating from Oracle to MySQL?
2579
June 14, 2006 12:22PM


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.