cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

How to write Spark dataframe to Oracle database from databricks environment ?

prasannar
New Contributor II
1 ACCEPTED SOLUTION

Accepted Solutions

ramravi
Contributor II

we can use JDBC driver to write dataframe to Oracle tables.

Download Oracle ojdbc6.jar JDBC Driver

You need an Oracle jdbc driver to connect to the Oracle server. The latest version of the Oracle jdbc driver is ojdbc6.jar file. You can download the driver version as per your JDK version.

You can download this driver from official website. Go ahead and create Oracle account to download if you do not have. Or can download from maven as dependent library in cluster or job directly

In the Databricks Clusters UI, install your third-party library .jar or Maven artifact with Library Source 

Upload DBFS, DBFS/S3 or Maven. Alternatively, use the Databricks libraries API.

install-library 

Load Spark DataFrame to Oracle Table Example

Now the environment is se. we can use dataframe.write method to load dataframe into Oracle tables.

For example, the following piece of code will establish JDBC connection with the Oracle database and copy dataframe content into mentioned table.

Df.write.format('jdbc').options(
 
      url='jdbc:oracle:thin:@192.168.11.100:1521:ORCL',
 
      driver='oracle.jdbc.driver.OracleDriver',
 
      dbtable='testschema.test',
 
      user='testschema',
 
      password='password').mode('append').save()
 

View solution in original post

3 REPLIES 3

ramravi
Contributor II

we can use JDBC driver to write dataframe to Oracle tables.

Download Oracle ojdbc6.jar JDBC Driver

You need an Oracle jdbc driver to connect to the Oracle server. The latest version of the Oracle jdbc driver is ojdbc6.jar file. You can download the driver version as per your JDK version.

You can download this driver from official website. Go ahead and create Oracle account to download if you do not have. Or can download from maven as dependent library in cluster or job directly

In the Databricks Clusters UI, install your third-party library .jar or Maven artifact with Library Source 

Upload DBFS, DBFS/S3 or Maven. Alternatively, use the Databricks libraries API.

install-library 

Load Spark DataFrame to Oracle Table Example

Now the environment is se. we can use dataframe.write method to load dataframe into Oracle tables.

For example, the following piece of code will establish JDBC connection with the Oracle database and copy dataframe content into mentioned table.

Df.write.format('jdbc').options(
 
      url='jdbc:oracle:thin:@192.168.11.100:1521:ORCL',
 
      driver='oracle.jdbc.driver.OracleDriver',
 
      dbtable='testschema.test',
 
      user='testschema',
 
      password='password').mode('append').save()
 

prasannar
New Contributor II

Thanks for detailed explanation and example.

Ajay-Pandey
Esteemed Contributor III

Hi @Prasanna Lakshmiโ€‹ you can use JDBC API to read and write the data from databricks.

Welcome to Databricks Community: Lets learn, network and celebrate together

Join our fast-growing data practitioner and expert community of 80K+ members, ready to discover, help and collaborate together while making meaningful connections. 

Click here to register and join today! 

Engage in exciting technical discussions, join a group with your peers and meet our Featured Members.