cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

What is the best way to connect Oracle CRM cloud from databricks?

nchittampelly
New Contributor

What is the best way to connect Oracle CRM cloud from databricks?

1 REPLY 1

SP_6721
Contributor

Hi @nchittampelly 

Follow these steps:

Use a Compatible JDBC Driver

  • Use a suitable JDBC driver such as CData Oracle Sales Cloud JDBC or HCM Cloud JDBC driver.

Upload the Driver to Databricks

  • Add the driver JAR to your cluster via the Libraries tab. For Unity Catalog or shared clusters, ensure it's accessible.

Ensure Network Connectivity

  • Verify that your Databricks workspace has network access to the Oracle CRM Cloud endpoint (check firewall/proxy settings).

Set Up the Connection in Code

  • Use Sparkโ€™s JDBC connector in your notebook. Example:

    df = spark.read.format("jdbc") \
    .option("url", "<jdbc_url>") \
    .option("driver", "<driver_class>") \
    .option("dbtable", "<table_name>") \
    .load()

    Test the connection first, then begin ingesting data as needed for analysis.

    Use Databricks Secrets to keep your credentials safe. Also, check if the driver is compatible with your Databricks runtime version.

Join Us as a Local Community Builder!

Passionate about hosting events and connecting people? Help us grow a vibrant local communityโ€”sign up today to get started!

Sign Up Now