You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems to be a problem specific to pgadmin. The import of the populated sql dump via command line interface works fine. Make sure to grant privileges on a specific user after import.
# change to postgres user
sudo su - postgres
# import sql dump
psql pia < pia_populated.sql
# connect to database pia
psql
\c pia;# grant everything to user pia
grant all privileges on all tables in schema public to pia;
When trying to import the PostgreSQL database dump (pia_populated.sql), the following error is prompted:
@thgie: "Maybe it is due to an error in the schema or how pgAdmin does the plain SQL export."
The text was updated successfully, but these errors were encountered: