Learn R Programming

brickster (version 0.2.12)

dbWriteTable,DatabricksConnection,AsIs,data.frame-method: Write table to Databricks (AsIs name signature)

Description

Write table to Databricks (AsIs name signature)

Usage

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

Value

TRUE invisibly on success

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