CREATE USER artie_transfer WITH PASSWORD 'password';GRANT USAGE ON SCHEMA schema_name TO artie_transfer;-- Grant access to existing tablesGRANT SELECT ON ALL TABLES IN SCHEMA schema_name TO artie_transfer;-- Grant read-only access to future tablesALTER DEFAULT PRIVILEGES IN SCHEMA schema_name GRANT SELECT ON TABLES TO artie_transfer;-- The replication role does not have enough permissions to create publications. -- So you will need to create this as well.CREATE PUBLICATION dbz_publication FOR ALL TABLES;ALTER USER artie_transfer REPLICATION;