Skip to content

Commit

Permalink
0005913: Update postgres documentation on how to give access to schemas
Browse files Browse the repository at this point in the history
for a SymmetricDS user
  • Loading branch information
Philip Marzullo committed Jul 5, 2023
1 parent e497de1 commit c7e99a5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions symmetric-assemble/src/asciidoc/appendix/postgresql.ad
Expand Up @@ -37,6 +37,14 @@ If you want SymmetricDS to install into a schema other than public you can alter
alter user {user name} set search_path to {schema name};
----

You will also need to set privileges on the schema so that the SymmetricDS user can use and write to the schema.

[source, SQL]
----
grant usage on schema {schema name} to {user name};
grant create on schema {schema name} to {user name};
----

==== Permissions

If SymmetricDS is connected into a different schema than the application tables and a different user account is used to write to the the application tables the following permissions need to be granted to the application user to access the SymmetricDS schema
Expand Down

0 comments on commit c7e99a5

Please sign in to comment.