Is there any query available to list all tables in my Postgres DB. I tried out one query like: SELECT table_name FROM information_schema.tables WHERE table_schema="public" But this query returns...
  • May 23, 2022
  • 0 Comments
I tried to run simple SQL command: select * from site_adzone; and I got this error ERROR: permission denied for relation site_adzone What could be the problem here? I...
  • May 8, 2022
  • 0 Comments
What is the command to find the size of all the databases? I am able to find the size of a specific database by using following command: select pg_database_size('databaseName');...
  • May 6, 2022
  • 0 Comments