Mysql Workbench export sql to Oracle 11

export, mysql-workbench, oracle

Solution

As this post suggests, you can use an online convertor (it works well) : http://www.sqlines.com/online

You copy the SQL create script in it, and you get its Oracle version.

I don't think that a MySQL Workbench plugin exists which does the job. It should be nice to have a script converter plugin in MWB nevertheless...

Problem

I have installed MySQL Workbench with a default database named sakila. I want to export this database to SQL script for Oracle 11g. I can export database in SQL with Forward engineer tools but the SQL don't work on Oracle. After searching I found that migration system can migrate to another database system. But I haven't got Oracle in the database system and I want a SQL script. Do you have an idea?

Original source

Related problems