You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any way to run the SQL statements other than SELECT, like ALTER, DELETE etc using Spark or JDBC Connector?
I am aware that we can do SELECT statement using dbtable options and call sqlContext.read.format("jdbc").options(options).load(), but I don't know if it is also works for any other statements.
What I'm trying to do is to overwrite the data in Kinetica based on certain conditions in a specific column other than the primary key, so I need to run the DELETE statement first before I insert the data.
Jar version that I am using: kinetica-spark-7.0.6.1-jar-with-dependencies.jar
The text was updated successfully, but these errors were encountered:
Hi guys,
Is there any way to run the SQL statements other than
SELECT
, likeALTER
,DELETE
etc using Spark or JDBC Connector?I am aware that we can do
SELECT
statement usingdbtable
options and callsqlContext.read.format("jdbc").options(options).load()
, but I don't know if it is also works for any other statements.What I'm trying to do is to
overwrite
the data in Kinetica based on certain conditions in a specific column other than the primary key, so I need to run theDELETE
statement first before I insert the data.Jar version that I am using:
kinetica-spark-7.0.6.1-jar-with-dependencies.jar
The text was updated successfully, but these errors were encountered: