MYSQL TO ORACLE MIGRATION---Stored procedures [message #505855] |
Thu, 05 May 2011 05:23 |
|
Vinay_s07
Messages: 8 Registered: March 2011 Location: Bangalore
|
Junior Member |
|
|
Hello,
Could you please provide me any information related to stored procedures migration from MYSQL to ORACLE plaese?
I have managed to migrate the database structures, data, Indexes, and constraints from MYSQL to ORACLE using oracle sql developer tool. But getting errors while migrating the views and stored procedures.
Error received:Migration actions have failed:check the migration reports for details:ORA-00902:Invalid data type.
Any help or information on this would be much appreciated.
Thanks and Regards.
Vinay B S
|
|
|
|
|
|
|
Re: MYSQL TO ORACLE MIGRATION---Stored procedures [message #505863 is a reply to message #505860] |
Thu, 05 May 2011 06:07 |
ThomasG
Messages: 3212 Registered: April 2005 Location: Heilbronn, Germany
|
Senior Member |
|
|
Well they should be listed in the Reports navigator: "click Migration Reports" according to the handbook here. (I hope you can access oracle.com)
Another option would be to take the DDL scripts that were created, and run them one by one in the query window to see where exactly the error is.
|
|
|
|
|
|
|
|
Re: MYSQL TO ORACLE MIGRATION---Stored procedures [message #505880 is a reply to message #505878] |
Thu, 05 May 2011 07:48 |
ThomasG
Messages: 3212 Registered: April 2005 Location: Heilbronn, Germany
|
Senior Member |
|
|
Only the old fashioned way: have a look what the procedures do, and re-write what needs to be done in PL/SQL.
Since procedures in MySQL and procedures in Oracle can do different things using different syntax it's hard to say how complicated that will be. Depends on what features the procedures rely on.
|
|
|