I have installed PostgreSQL DB server on my Ubuntu machine. Now I want to create a new Database through some GUI application. I tried pgAdmin but didn't find any option to create a new DB. But I could add existing db servers.

Is there any way to create a DB and then tables through pgAdmin or some other app.

Basically I am looking for an application for PostgreSQL like SQLYog for MySQL.

link|improve this question

68% accept rate
feedback

2 Answers

Of course you can create a database with pgAdmin.

You have to understand the basic concept of PostgreSQL. First you have to connect to a database cluster, which you can only do by connecting to a database in that cluster. Now, if your database does not exist, yet, there is the default maintenance db postgres you can connect to. Connect to it and issue CREATE DATABASE there. Then change to the new database.

link|improve this answer
feedback
  1. Open pgAdmin
  2. Connect to database server
  3. Edit => New Object => New database
  4. done

Or use plain SQL when connection to any database: CREATE DATABASE my_database;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.