dbeaver 7.1.1 delete database

Viewed 7716

How can I delete a database in Dbeaver? I set as default another db but still have an error.enter image description here

2 Answers

Ok, it's not a bug. Just in your connection type another database. Now you can delete the previous default database.

I just had this problem with DBeaver 7.1.0.

  1. Open your CLI terminal ;)

  2. Type mysql -u root -p (or whatever your SQL server is, Postgres, etc)

-u root is for user root

-p is for password--it will let you type it in after you hit enter

  1. Type USE databasename (where databasename is the name of your DB in DBeaver)

  2. Type SHOW tables; (this will list all the tables in that DB)

  3. Type DROP TABLE tablename; (where tablename is each table)

I searched for a while in DBeaver, but the easiest way is to simply use the MySQL command line interface and input a couple commands.

Related