Tell me more ×
Database Administrators Stack Exchange is a question and answer site for database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.

Before, I have used phpmyadmin to manage an MySQL database, but now I would like to manage a PostgreSQL database. The PostgreSQL database is on a server, but not a webserver, so I don't use PHP.

Are there any good and free tools for managing a PostgreSQL database?

I have tried with pgAdmin III but it was a far from intuitive application to use, compared to phpmyadmin that I have used before. What are PostgreSQL DBAs usually using? do they use graphical tools like pgAdmin III or is it mostly command line tools?

share|improve this question
There is a long list in the PostgreSQL Wiki: wiki.postgresql.org/wiki/… – a_horse_with_no_name Jul 20 '12 at 6:29

5 Answers

up vote 3 down vote accepted

There is Navicat for PostgreSQL and other database platforms.

It has a free lite and a commercial version.

share|improve this answer

Well, there is phpPgAdmin, if that suits you.

share|improve this answer
That sounds good. But at the moment I don't have a webserver and I'm not running PHP. Is there any similar GUI tools? It would also be helpful if it was possible to log in to a remote database via SSH. – Jonas Feb 17 '11 at 8:48

pgAdmin and psql, those are the tools I use. A PHP-script isn't very usefull for database management, too slow and many problems with transactions: What to do when something goes wrong? Commit or rollback? This makes tools like phpmyadmin and phpPgAdmin pretty useless, when the script is done, the database connection will be closed. There is nothing to commit or rollback, your SQL script is already gone.

Learn SQL and any tool that can keep it's databases connections open, will do the job.

share|improve this answer
I have used pgAdmin and psql a few months now, but I'm disappointed. The result sets from psql looks terrible on Windows, it's almost impossible to read, when having many columns. And it's hard to get a good workflow using pgAdmin, e.g. see How can I access the query history with SQL Editor in pgAdmin III? – Jonas Nov 7 '11 at 17:45

I like dbVisualizer, it has a free version that unfortunately is missing some features, you'll have to see if it has enough for you.

also check out stackoverflow for more choices:

share|improve this answer

Coming from Microsoft SQL Server, I really like http://www.sqlmanager.net/products/postgresql/manager/ for managing PostgreSQL.

The free version has most everything you would need to get started.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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