0

I've been holding out on upgrading my Postgres installation because I don't want to use the new pgAdmin viewer. What are some of the other alternatives that people like?

Matt
  • 967
  • 2
  • 9
  • 23
  • I like Valentina Studio: https://www.valentina-db.com/en/valentina-studio-overview (have been using it on Ubuntu for two or three years now). – Heiko Jakubzik Jun 18 '19 at 15:27

1 Answers1

2

I like psql, the terminal-based frontend that ships with PostgreSQL. It's quite powerful.

I've written an extensive guide on how to use it, which I hope convinces you of its power.

fphilipe
  • 9,739
  • 1
  • 40
  • 52
  • Thanks Philipe! but don't you like to see the visual of the tables when you are interacting with them? That's the biggest reason I haven't switched yet. – Matt Jun 18 '19 at 17:12
  • `\d tablename` (or `\d+ tablename` for more details) gives me everything I need. – fphilipe Jun 18 '19 at 18:17
  • @Matt, I've fixed the link for the guide I wrote. Make sure to check it out :) – fphilipe Jun 18 '19 at 19:32