โ12-26-2022 02:53 AM
How to Call Oracle Stored Procedures from Databricks?
โ12-26-2022 03:13 AM
here i have code
โ12-30-2022 03:52 PM
Chiming in because I don't know if the above quite answers how to execute a stored procedure. I use PySpark. I believe this should work for oracle, but only was able to test it with MS Sql Server. I had to truncate a table, but the code works for a stored procedure as well.
General idea is to get the jdbc connection from the jvm gateway and use that to execute sql commands.
sqlSurl = "jdbc:[driver]//ip..."
con = (sc._gateway
.jvm
.java
.sql
.DriverManager
.getConnection(sqlsUrl, \
username, \
password)
)
con.prepareCall(query).execute()
con.close()
โ01-05-2023 04:29 AM
Check this link, maybe it will help you solve this problem
โ01-14-2023 12:16 AM
Thanks it helps me as wellโ
โ01-05-2023 09:40 PM
https://datathirst.net/blog/2018/10/12/executing-sql-server-stored-procedures-on-databricks-pyspark/
try this link. this may help you
โ01-14-2023 12:16 AM
It was needed me as well so thanks โ
Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you wonโt want to miss the chance to attend and share knowledge.
If there isnโt a group near you, start one and help create a community that brings people together.
Request a New Group