diff --git a/openmetadata-docs/content/connectors/database/oracle/airflow.md b/openmetadata-docs/content/connectors/database/oracle/airflow.md index a350ead9d3f..6ce3bbfd6e7 100644 --- a/openmetadata-docs/content/connectors/database/oracle/airflow.md +++ b/openmetadata-docs/content/connectors/database/oracle/airflow.md @@ -40,7 +40,8 @@ custom Airflow plugins to handle the workflow deployment. Note: To fetch metadata from oracle db we use python-oracledb and this support 12c, 18c, 19c and 21c versions! -To ingest metadata from oracle user must have `CREATE SESSION` privilege for the user. +To ingest metadata from oracle user must have following permissions: +1. `CREATE SESSION` privilege for the user. ```sql @@ -58,6 +59,12 @@ GRANT CREATE SESSION TO new_role; ``` +2. `GRANT SELECT` on the relevant tables which are to be ingested into OpenMetadata to the user +```sql + +GRANT SELECT ON table_name TO {user | role}; + +``` ### Python Requirements diff --git a/openmetadata-docs/content/connectors/database/oracle/cli.md b/openmetadata-docs/content/connectors/database/oracle/cli.md index 275ca68ac45..6c5a517784d 100644 --- a/openmetadata-docs/content/connectors/database/oracle/cli.md +++ b/openmetadata-docs/content/connectors/database/oracle/cli.md @@ -39,7 +39,8 @@ custom Airflow plugins to handle the workflow deployment. Note: To fetch metadata from oracle db we use python-oracledb and this support 12c, 18c, 19c and 21c versions! -To ingest metadata from oracle user must have `CREATE SESSION` privilege for the user. +To ingest metadata from oracle user must have following permissions: +1. `CREATE SESSION` privilege for the user. ```sql @@ -57,6 +58,12 @@ GRANT CREATE SESSION TO new_role; ``` +2. `GRANT SELECT` on the relevant tables which are to be ingested into OpenMetadata to the user +```sql + +GRANT SELECT ON table_name TO {user | role}; + +``` ### Python Requirements diff --git a/openmetadata-docs/content/connectors/database/oracle/index.md b/openmetadata-docs/content/connectors/database/oracle/index.md index f1c49a0d92c..6c4665c5897 100644 --- a/openmetadata-docs/content/connectors/database/oracle/index.md +++ b/openmetadata-docs/content/connectors/database/oracle/index.md @@ -60,7 +60,8 @@ custom Airflow plugins to handle the workflow deployment. Note: To fetch metadata from oracle db we use python-oracledb and this support 12c, 18c, 19c and 21c versions! -To ingest metadata from oracle user must have `CREATE SESSION` privilege for the user. +To ingest metadata from oracle user must have following permissions: +1. `CREATE SESSION` privilege for the user. ```sql @@ -78,7 +79,12 @@ GRANT CREATE SESSION TO new_role; ``` +2. `GRANT SELECT` on the relevant tables which are to be ingested into OpenMetadata to the user +```sql +GRANT SELECT ON table_name TO {user | role}; + +``` ## Metadata Ingestion