Using the following link to load data to SQL DB from Databricks I'm getting the following error:
command-3227900948916301:23: error: value bulkCopyToSqlDB is not a member of org.apache.spark.sql.DataFrameWriter[org.apache.spark.sql.Row] df.write.mode(SaveMode.Overwrite).bulkCopyToSqlDB(bulkCopyConfig)
My code is as follows:
val bulkCopyConfig = Config(Map(
"url" -> url,
"databaseName" -> databaseName,
"dbTable" -> "dbo.xxxx",
"user" -> user,
"password" -> password,
"connectTimeout" -> "120",
"bulkCopyBatchSize" -> "100000",
"bulkCopyTableLock" -> "true",
"bulkCopyTimeout" -> "0",
"truncate" -> "true"
// "queryTimeout" -> "5"
))
//~
df. write.mode(SaveMode.Overwrite).bulkCopyToSqlDB(bulkCopyConfig)
Any thoughts on why I'm getting the error?
You need to have correct imports to extend the DataFrame with additional functions:
here is what I get (it fails because I don't have active SQL DB, but it found the function):