For people using Redshift, I met a problem when tr...
# gooddata-platform
t
For people using Redshift, I met a problem when trying to load a dataset and here what was the solution. I granted SELECT access to the table in Redshift I was trying to load, but actually it is not enough. However, it will be enough for Gooddata to see the table and its columns, allowing you to drag the redshift table to your model view. But when you load the dataset, it will fails because you also need to grand USAGE access to the schema (
GRANT
USAGE
ON
*SCHEMA* your_schema *TO* your_user;
).
👍 2
🙌 2
m
Thank you for sharing this with the community! 🙂