Skip to contents

Write table to Databricks (AsIs name signature)

Usage

# S4 method for class 'DatabricksConnection,AsIs,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

DatabricksConnection object

name

Table name as AsIs object (from I())

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