Skip to content

Commit 6254c50

Browse files
authored
Merge pull request #4849 from segmentio/joeynmq-patch-1
Add troubleshooting guide for Redshift rETL
2 parents bb1ea40 + 00549e2 commit 6254c50

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,11 @@ To set up Redshift with Reverse ETL:
2424
### Extra Permissions
2525
Give the `segment` user read permissions for any resources (databases, schemas, tables) the query needs to access.
2626

27-
Give the `segment` user write permissions for the Segment managed schema (`__segment_reverse_etl`), which keeps track of changes to the query results.
27+
Give the `segment` user write permissions for the Segment managed schema (`__segment_reverse_etl`), which keeps track of changes to the query results.
28+
29+
### Troubleshooting
30+
#### Extraction failures: relation does not exist
31+
If you are able to run the query in the Query Builder, but the sync fails with the `relation does not exist` error, please make sure the schema name is included before the database table name, and check that the schema name is correct:
32+
```ts
33+
SELECT id FROM <schema_name>.<table_name>
34+
```

0 commit comments

Comments
 (0)