From 5ff1ff804aa9145430f8fd2d6e5354bb51994103 Mon Sep 17 00:00:00 2001 From: Rounak Dhillon <162090200+RounakDhillon@users.noreply.github.com> Date: Thu, 27 Feb 2025 17:56:30 +0530 Subject: [PATCH] Docs: Redshift Note Addition (#20012) Co-authored-by: Rounak Dhillon --- .../content/v1.6.x/connectors/database/redshift/index.md | 8 ++++++++ .../v1.7.x-SNAPSHOT/connectors/database/redshift/index.md | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/openmetadata-docs/content/v1.6.x/connectors/database/redshift/index.md b/openmetadata-docs/content/v1.6.x/connectors/database/redshift/index.md index 9d66ac42b53..cf30279a104 100644 --- a/openmetadata-docs/content/v1.6.x/connectors/database/redshift/index.md +++ b/openmetadata-docs/content/v1.6.x/connectors/database/redshift/index.md @@ -41,6 +41,14 @@ CREATE USER test_user with PASSWORD 'password'; GRANT SELECT ON TABLE svv_table_info to test_user; ``` +{% note %} +Ensure that the ingestion user has **USAGE** privileges on the schema containing the views. If additional access is needed, run the following command: + +```sql +GRANT USAGE ON SCHEMA "" TO ; +``` +{% /note %} + ### Profiler & Data Quality Executing the profiler workflow or data quality tests, will require the user to have `SELECT` permission on the tables/schemas where the profiler/tests will be executed. More information on the profiler workflow setup can be found [here](/how-to-guides/data-quality-observability/profiler/workflow) and data quality tests [here](/how-to-guides/data-quality-observability/quality). diff --git a/openmetadata-docs/content/v1.7.x-SNAPSHOT/connectors/database/redshift/index.md b/openmetadata-docs/content/v1.7.x-SNAPSHOT/connectors/database/redshift/index.md index 1d5c50fead9..b184c61e29b 100644 --- a/openmetadata-docs/content/v1.7.x-SNAPSHOT/connectors/database/redshift/index.md +++ b/openmetadata-docs/content/v1.7.x-SNAPSHOT/connectors/database/redshift/index.md @@ -41,6 +41,14 @@ CREATE USER test_user with PASSWORD 'password'; GRANT SELECT ON TABLE svv_table_info to test_user; ``` +{% note %} +Ensure that the ingestion user has **USAGE** privileges on the schema containing the views. If additional access is needed, run the following command: + +```sql +GRANT USAGE ON SCHEMA "" TO ; +``` +{% /note %} + ### Profiler & Data Quality Executing the profiler workflow or data quality tests, will require the user to have `SELECT` permission on the tables/schemas where the profiler/tests will be executed. More information on the profiler workflow setup can be found [here](/how-to-guides/data-quality-observability/profiler/workflow) and data quality tests [here](/how-to-guides/data-quality-observability/quality).