dbWriteTable-DatabricksConnection-character-data.frame-method: Write a data frame to Databricks table

dbWriteTable,DatabricksConnection,character,data.frame-methodR Documentation

Write a data frame to Databricks table

Description

Write a data frame to Databricks table

Usage

## S4 method for signature '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,
  ...
)

Arguments

conn

A DatabricksConnection object

name

Table name (character, Id, or SQL)

value

Data frame to write

overwrite

If TRUE, overwrite existing table

append

If TRUE, append to existing table

row.names

If TRUE, preserve row names as a column

temporary

If TRUE, create temporary table (NOT SUPPORTED - will error)

field.types

Named character vector of SQL types for columns

staging_volume

Optional volume path for large dataset staging

progress

If TRUE, show progress bar for file uploads (default: TRUE)

...

Additional arguments

Value

TRUE invisibly on success


brickster documentation built on Sept. 9, 2025, 5:33 p.m.