Skip to content

Commit

Permalink
Update snowflake-permissions.md
Browse files Browse the repository at this point in the history
Fixed two instances where the role name was incorrectly written as 'transformer' instead of 'reporter'.
  • Loading branch information
ronistrom authored Dec 12, 2024
1 parent 14aec7d commit e1b9f73
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ grant select on future views in database analytics to role reporter;
Again, if you already have data in your analytics database, make sure you run:
```
grant usage on all schemas in database analytics to role reporter;
grant select on all tables in database analytics to role transformer;
grant select on all views in database analytics to role transformer;
grant select on all tables in database analytics to role reporter;
grant select on all views in database analytics to role reporter;
```
8. Maintain
When new users are added, make sure you add them to the right role! Everything else should be inherited automatically thanks to those `future` grants.
Expand Down

0 comments on commit e1b9f73

Please sign in to comment.