Skip to content

Commit 6bf9d11

Browse files
committed
make code grey
1 parent 5f961c9 commit 6bf9d11

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/connections/reverse-etl/reverse-etl-source-setup-guides/databricks-setup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ At a high level, when you set up Databricks for Reverse ETL, the configured user
99
## Required permissions
1010
* To grant access to read data from the tables used in the model query run:
1111

12-
```ts
12+
```
1313
GRANT USAGE ON SCHEMA <schema_name> TO `<user or service principal you are using to connect to Segment>`;
1414
GRANT SELECT, READ_METADATA ON SCHEMA <schema_name> TO `<user or service principal you are using to connect to Segment>`;
1515
```
1616
1717
* To grant Segment access to create a schema to keep track of the running syncs, run:
1818
19-
```ts
19+
```
2020
GRANT CREATE on catalog <name of the catalog, usually hive_metastore or main if using unity-catalog> TO `<user or service principal you are using to connect to Segment>`;
2121
```
2222
2323
* If you want to create the schema yourself instead and then give Segment access to it, run:
2424
25-
```ts
25+
```
2626
CREATE SCHEMA IF NOT EXISTS __segment_reverse_etl;
2727
GRANT ALL PRIVILEGES ON SCHEMA __segment_reverse_etl TO `<user or service principal you are using to connect to Segment>`;
2828
```

0 commit comments

Comments
 (0)