I ran the command grant all on auth.identities to...
# help
n
I ran the command grant all on auth.identities to postgres, dashboard_user; Yet I still get pg_dump: error: query failed: ERROR: permission denied for table schema_migrations pg_dump: error: query was: LOCK TABLE realtime.schema_migrations IN ACCESS SHARE MODE
n
Hello @Nditah! This thread has been automatically created from your message in #843999948717555735 a few seconds ago. We have already mentioned the @User so that they can see your message and help you as soon as possible! Want to unsubscribe from this thread? Right-click the thread in Discord (or use the ``...`` menu) and select "Leave Thread" to unsubscribe from future updates. Want to change the title? Use the ``/title`` command! We have solved your problem? Click the button below to archive it.
s
Its probably easier to just elevate your
postgres
user to a superuser when doing pg_dump and then de-elevate it after you are done. - elevate
Copy code
sql
ALTER USER postgres WITH SUPERUSER;
de-elevate
Copy code
sql
ALTER USER postgres WITH NOSUPERUSER;
n
Thank you, Sir. Let me try that.