Quote:
Originally posted by jin007
I need to do a migration from Oracle to MySQL. The problem is that I have tables in several oracle schemas and my applications are coded like this:
SELECT * FROM SCHEMA1.TABLEA join SCHEMA2.TABLEB
How should I handle the migration? Should I create a mysql database for each of my oracle schema? How does this effect the java code?
Thanks.
|
Should I create a mysql database for each of my oracle schema? - This is first option.
The second option is change your data model but i think you want not this.