Skip to content

Commit f076f5b

Browse files
authored
Merge pull request #6351 from segmentio/update-snowflake-user-timezone
Add `TIMEZONE='UTC'` to Snowflake Setup Guide
2 parents c3f1fa8 + 953f7ba commit f076f5b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/unify/linked-profiles/setup-guides/snowflake-setup.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ CREATE USER IF NOT EXISTS identifier($segment_connection_username)
7474
MUST_CHANGE_PASSWORD = FALSE
7575
DEFAULT_ROLE = $segment_connection_role
7676
PASSWORD=$segment_connection_password
77-
COMMENT='Segment Linked Profiles User';
77+
COMMENT='Segment Linked Profiles User'
78+
TIMEZONE='UTC';
7879
7980
-- Grant permission to the role to use the warehouse
8081
GRANT USAGE ON WAREHOUSE identifier($segment_connection_warehouse) TO ROLE identifier($segment_connection_role);
@@ -180,4 +181,4 @@ USE DATABASE identifier($linked_read_only_database) ;
180181
SHOW SCHEMAS;
181182
SELECT * FROM identifier($table) LIMIT 10;
182183
183-
```
184+
```

0 commit comments

Comments
 (0)