What is the best way to list all of the tables within PostgreSQL's information_schema?
To clarify: I am working with an empty DB (I have not added any of my own tables), but I want to see every table in the information_schema structure.
|
What is the best way to list all of the tables within PostgreSQL's information_schema? To clarify: I am working with an empty DB (I have not added any of my own tables), but I want to see every table in the information_schema structure. |
||||
|
|
|
You should be able to just run You can also add a |
|||||||||||||||
|
|
For listing your tables use:
It will only list tables that you create. |
||||
|
|
|
You may use also
In generall pg* tables allow you to see everything in the db, not constrained to your permissions. |
|||
|
|