3

I have configured mysql db with oracle sql developer version 4.0. But create table, create database all the options for mysql databases are disabled.

I was able to create a new database only by running the create database command. Can any tell me a workaround for this. Is it not possible to create tables using the GUI?

Screenshot attached.

enter image description here

3
  • Didn't you specify a database when we create a MySQL connection in SQL Developer? Can you not create tables in that database? Commented May 3, 2015 at 5:08
  • well there are several existing dbs, I need to create a new one, for that I can't do it via GUI. Commented May 3, 2015 at 5:08
  • ya thanks, I've moved to MySql Workbench Commented May 3, 2015 at 5:14

2 Answers 2

4

The MySQL support in Oracle SQL Developer is for migrating MySQL databases to Oracle.

If you want that type of GUI support, you should be using the MySQL Workbench product.

Sign up to request clarification or add additional context in comments.

Comments

0

it is possible to use Oracle SQL developer for MySQL DB.

All you need to do is to use following convension:

DB_name.TABLE_name
SELECT * FROM movies.directors
DB_name = movies
TABLE_name = directors

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.