Greenplum dbWriteTable method
Greenplum dbExistsTable method
# S4 method for GreenplumConnection,character,data.frame
dbWriteTable(conn, name,
value, ..., row.names = FALSE, overwrite = FALSE, append = FALSE,
field.types = NULL, temporary = FALSE, distributed_by = NULL,
copy = TRUE)# S4 method for GreenplumConnection,character
dbExistsTable(conn, name, ...)
a [GreenplumConnection-class] object
a character string specifying a table name. Names will be automatically quoted so you can use any sequence of characters, not just any valid bare table name.
A data.frame to write to the database.
Other arguments used by individual methods.
Either TRUE, FALSE, NA or a string
a logical specifying whether to overwrite an existing table or not. Its default is FALSE.
a logical specifying whether to append to an existing table in the DBMS. Its default is FALSE.
character vector of named SQL field types where the names are the names of new table's columns.
If TRUE, will generate a temporary table statement.
Distribution columns for new table. NULL for random distribution.
If TRUE, data will be copied to remote database