MySQL Forums
Forum List  »  Oracle

how to convert oracle to mysql
Posted by: Randeep Mann
Date: August 30, 2011 11:36PM

Hi Guys,

One way to do it is to query the object's structure trough SQL using JDBC, then you will have all the information you need available in Record sets (data-types, names...)In Oracle in order to get all tables (or other types of objects) you can:
SELECT Object_Name,Object_ID FROM user_objects WHERE Object_Type='TABLE'
Then you can iterate trough the resulting Recordset and for each table you have gotten on the previous query. get the column structure like this:SELECT * From user_tab_columns WHERE Table_Name='TableName'This way you can conditionaly build up Create table statements with proper datatype mappings.The same method could be used for any type of objects.Doing the same from Oracle to SQL Server a pain in the arse..

Good luck...

Options: ReplyQuote


Subject
Views
Written By
Posted
9351
November 23, 2010 04:30AM
4086
June 15, 2011 12:10AM
3730
November 10, 2011 01:52AM
how to convert oracle to mysql
4150
August 30, 2011 11:36PM
3983
February 12, 2011 11:11AM
3755
March 16, 2011 12:44PM
2869
March 05, 2012 02:49PM
3123
August 23, 2011 03:27AM
3668
August 05, 2011 10:32AM
3179
December 02, 2011 10:28AM
2846
January 06, 2012 09:37AM
2882
February 03, 2012 08:37AM
2589
August 30, 2012 07:20AM


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.