cancel
Showing results for 
Search instead for 
Did you mean: 
DumbBeaver
New Contributor II
since ‎01-30-2024
‎04-05-2024

User Stats

  • 3 Posts
  • 0 Solutions
  • 1 Kudos given
  • 0 Kudos received

User Activity

While writing the data to a pre-existing table in the unity catalog using JDBC. it just writes the Delta of the data. Driver used: com.databricks:databricks-jdbc:2.6.36Lets say I have the table has rows:+-+-+ |a|b| +-+-+ |1|2| |3|4| and I am appendi...
This is my code here. df = spark.createDataFrame([[1,1,2]], schema=['id','first_name','last_name'])(df.write.format("jdbc")     .option("url",  <jdbc-url>)    .option("dbtable","hive_metastore.default.test")    .option("driver", "com.databricks.clien...
Kudos given to