Note that there are some explanatory texts on larger screens.

plurals
  1. POSome PostgreSQL databases not visible through clients like Navicat or pgAdmin
    text
    copied!<p>When I log in to see my remote PostgreSQL databases with pgAdmin or Navicat, I can connect without any problems, and the first three databases in the list below show up fine. But for some reason I can't get the last two databases ("template0" and "template1") to show up with the others. Also, when I ssh into the server's database, I can run a "SELECT * FROM a_table_in_template1_database;" and it shows all of the contents of the table with no issues, so I know everything is okay with the database and the tables within it. How can I get the "template1" database to show up in this list and work? Here is PostgreSQL's the output from the terminal when I run "\list":</p> <pre><code>template1=# \list List of databases Name | Owner | Encoding | Collation | Ctype | Access privileges ---------------+----------+----------+-----------+-------+----------------------- mygigline | jball037 | LATIN1 | en_US | en_US | mygiglinemain | postgres | LATIN1 | en_US | en_US | postgres | postgres | LATIN1 | en_US | en_US | template0 | postgres | LATIN1 | en_US | en_US | =c/postgres template1 | postgres | LATIN1 | en_US | en_US | =CTc/postgres : postgres=CTc/postgres (5 rows) </code></pre> <p>It LOOKS like there might be something with "Access Privileges" that is causing this. However, I have done things like "GRANT ALL ON DATABASE template1 TO postgres" but that doesn't seem to help.</p> <p>Another useful piece of info: When I log in with Navicat and the three databases show up, I can click the option to "Open Database", then I type in "template1", and it will show up on the left panel along with the other three databases, but I can't click on it or do anything with it.</p> <p>I just want to be able to show all 5 of my databases show up in either Navicat or pgAdmin and be able to access all of them :) Any help would be much appreciated!</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload