You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/unify/data-graph/setup-guides/BigQuery-setup.md
+5
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,11 @@ Segment recommends you to create a new dataset for the Data Graph. If you choose
37
37
38
38
To create your dataset, navigate to the BigQuery SQL editor and create a dataset that will be used by Segment.
39
39
40
+
```
41
+
CREATE SCHEMA IF NOT EXISTS `__segment_reverse_etl`;
42
+
GRANT `roles/bigquery.dataEditor` ON SCHEMA `__segment_reverse_etl` TO "serviceAccount:<YOUR SERVICE ACCOUNT EMAIL>";
43
+
```
44
+
40
45
## Step 3: Grant read-only access for the Data Graph
41
46
Grant the [BigQuery Data Viewer](https://cloud.google.com/bigquery/docs/access-control#bigquery.dataViewer){:target="_blank"} role to the service account at the project level. Make sure to grant read-only access to the Profiles Sync project in case you have a separate project.
0 commit comments