pg_dump: [archiver (db)] query failed: ERROR: permission denied for relation abouts

后端 未结 3 2035
清酒与你
清酒与你 2021-01-17 09:58

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         


        
3条回答
  •  轮回少年
    2021-01-17 10:24

    The user which you're performing your pg_dump as doesn't have permissions on the public schema.

    Add permissions if allowed:

    GRANT USAGE ON SCHEMA public TO ;
    GRANT SELECT ON ALL TABLES IN SCHEMA public TO ;
    

提交回复
热议问题