I\'m trying to dump my pg db but got these errors please suggest
pg_dump: [archiver (db)] query failed: ERROR: permission denied for relation abouts pg_dump
The user which you're performing your pg_dump as doesn't have permissions on the public schema.
pg_dump
Add permissions if allowed:
GRANT USAGE ON SCHEMA public TO ; GRANT SELECT ON ALL TABLES IN SCHEMA public TO ;