Write a data frame to Databricks table
# S4 method for DatabricksConnection,character,data.frame
dbWriteTable(
conn,
name,
value,
overwrite = FALSE,
append = FALSE,
row.names = FALSE,
temporary = FALSE,
field.types = NULL,
staging_volume = NULL,
progress = TRUE,
...
)TRUE invisibly on success
A DatabricksConnection object
Table name (character, Id, or SQL)
Data frame to write
If TRUE, overwrite existing table
If TRUE, append to existing table
If TRUE, preserve row names as a column
If TRUE, create temporary table (NOT SUPPORTED - will error)
Named character vector of SQL types for columns
Optional volume path for large dataset staging
If TRUE, show progress bar for file uploads (default: TRUE)
Additional arguments