Spark JDBC query isn't working for Oracle Databases
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2021 12:26 PM
I am trying to read with the following syntax
val df = spark.read
.format("jdbc")
.option("url", "<url>")
.option("query", "SELECT * FROM oracle_test_table)")
.option("user", "<user>")
.option("password", "<password>")
.option("driver", "oracle.jdbc.driver.OracleDriver")
.load()
df.show()
and am getting the following error
java.sql.SQLSyntaxErrorException: ORA-00911: invalid character
Labels:
- Labels:
-
Oracle
-
Spark JDBC Query
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2021 12:26 PM

