diff --git a/openmetadata-docs/content/connectors/dashboard/superset/airflow.md b/openmetadata-docs/content/connectors/dashboard/superset/airflow.md index 1bf91a0447b..b9640189a8e 100644 --- a/openmetadata-docs/content/connectors/dashboard/superset/airflow.md +++ b/openmetadata-docs/content/connectors/dashboard/superset/airflow.md @@ -65,9 +65,9 @@ source: serviceConnection: config: type: Superset + hostPort: http://localhost:8080 connection: # For Superset API Connection - hostPort: http://localhost:8080 username: admin password: admin provider: db # or provider: ldap diff --git a/openmetadata-docs/content/connectors/dashboard/superset/cli.md b/openmetadata-docs/content/connectors/dashboard/superset/cli.md index 20125ab1260..7356d86fd9e 100644 --- a/openmetadata-docs/content/connectors/dashboard/superset/cli.md +++ b/openmetadata-docs/content/connectors/dashboard/superset/cli.md @@ -65,9 +65,9 @@ source: serviceConnection: config: type: Superset + hostPort: http://localhost:8088 connection: # For Superset API Connection - hostPort: http://localhost:8080 username: admin password: admin provider: db # or provider: ldap diff --git a/openmetadata-docs/content/connectors/database/oracle/airflow.md b/openmetadata-docs/content/connectors/database/oracle/airflow.md index a85dacc130e..a16685d8f87 100644 --- a/openmetadata-docs/content/connectors/database/oracle/airflow.md +++ b/openmetadata-docs/content/connectors/database/oracle/airflow.md @@ -24,6 +24,26 @@ 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. + +```sql + +-- CREATE USER +CREATE USER user_name IDENTIFIED BY admin_password; + +-- CREATE ROLE +CREATE ROLE new_role; + +-- GRANT ROLE TO USER +GRANT new_role TO user_name; + +-- GRANT CREATE SESSION PRIVILEGE TO USER +GRANT CREATE SESSION TO new_role; + +``` + + ### Python Requirements To run the Oracle ingestion, you will need to install: diff --git a/openmetadata-docs/content/connectors/database/oracle/cli.md b/openmetadata-docs/content/connectors/database/oracle/cli.md index 31e8bbd9723..8e144b87ffc 100644 --- a/openmetadata-docs/content/connectors/database/oracle/cli.md +++ b/openmetadata-docs/content/connectors/database/oracle/cli.md @@ -24,6 +24,25 @@ 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. + +```sql + +-- CREATE USER +CREATE USER user_name IDENTIFIED BY admin_password; + +-- CREATE ROLE +CREATE ROLE new_role; + +-- GRANT ROLE TO USER +GRANT new_role TO user_name; + +-- GRANT CREATE SESSION PRIVILEGE TO USER +GRANT CREATE SESSION TO new_role; + +``` + + ### Python Requirements To run the Oracle ingestion, you will need to install: diff --git a/openmetadata-docs/content/connectors/database/oracle/index.md b/openmetadata-docs/content/connectors/database/oracle/index.md index b3941823c3a..5b56103400b 100644 --- a/openmetadata-docs/content/connectors/database/oracle/index.md +++ b/openmetadata-docs/content/connectors/database/oracle/index.md @@ -45,6 +45,26 @@ 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. + +```sql + +-- CREATE USER +CREATE USER user_name IDENTIFIED BY admin_password; + +-- CREATE ROLE +CREATE ROLE new_role; + +-- GRANT ROLE TO USER +GRANT new_role TO user_name; + +-- GRANT CREATE SESSION PRIVILEGE TO USER +GRANT CREATE SESSION TO new_role; + +``` + + + ## Metadata Ingestion ### 1. Visit the Services Page