The source data is in a keys table in the public schema of database keys (reference pg docs: https://www.postgresql.org/docs/current/postgres-fdw.html) :
create table keys (
id varchar not null,
keyname varchar not null,
created timestamp default current_timestamp not null,
modified timestamp default current_timestamp not null
);
The referencing user/schema/database is vids/public/vids .
- Set up the server connection
CREATE SERVER keys
FOREIGN DATA WRAPPER postgres_fdw
OPTIONS (host '1.2.3.4', port '5432', dbname 'keys');
- Create the user mapping
CREATE USER MAPPING FOR vids
SERVER keys
OPTIONS (user 'keys', password 'keys');
- Create the table mapping
create foreign table keys (
id varchar not null,
keyname varchar not null,
created timestamp default current_timestamp not null,
modified timestamp default current_timestamp not null
) server keys options (schema_name 'public', table_name 'keys');
- Try to access the foreign table when connected as vids in the vids db:
vids=> select * from keys;
ERROR: permission denied for foreign table keys
I do not understand given that the user keys is the owner of the keys table in the foreign database. What should be done here?
From a comment by @jjanes:
So the correction to my steps was: