Skip to content

Commit

Permalink
0005554: Added missing permissions to Example 25 in User Guide
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-miller-jumpmind committed Oct 27, 2022
1 parent c491e0b commit 3631119
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion symmetric-assemble/src/asciidoc/appendix/mssqlserver.ad
Expand Up @@ -30,7 +30,7 @@ However you can also set it up to run in its own database with a designated user

|Symmetric Database|CREATE TABLE, CREATE FUNCTION, REFERENCES|INSERT, EXECUTE
|Symmetric Schema|ALTER, SELECT, INSERT, UPDATE, DELETE|
|Application Database|SELECT, ALTER|
|Application Database|SELECT, ALTER (and INSERT, UPDATE, DELETE if the node is a target)|

|===

Expand Down Expand Up @@ -67,6 +67,10 @@ use APP_DATABASE;
CREATE USER SYM_USER FOR LOGIN SYM_USER
GRANT SELECT, ALTER ON DATABASE::APP_DATABASE to SYM_USER;

-- Grant the below permissions to the SymmetricDS User if the node is a target

GRANT INSERT, DELETE, UPDATE ON DATABASE::APP_DATABASE to SYM_USER;

-- Application User

CREATE LOGIN APP_USER
Expand Down

0 comments on commit 3631119

Please sign in to comment.