This is the second blog post in a series designed to assist companies who wish to migrate their code from Oracle to MySQL.
In the first post of the series I tried to explain why you would like your web platform to run on a MySQL database, and not on an Oracle database. In this post, I’ll try to focus on the changes that you need to plan for when migrating from an Oracle environment.
Code
Probably the most obvious change is in code. There is no way around it – you’ll have to change your code.
- SQL statements.
While ANSI SQL 92 is a standard, Oracle offers extensions to the spec – and those are used by most developers, sometimes without their being aware of it.
Of course, when moving to MySQL, those SQL statements will need to change. Some will require only minor …