insert_chunkwise_into
can be used to insert chunks of data into a
database. Typically chunked
can be used to for preprocessing data
before adding it to a database.
insert_chunkwise_into(x, dest, table, temporary = FALSE, analyze = FALSE)
tbl_chunk object
database destination, e.g. src_dbi()
name of table
Should the table be removed when the database connection is closed?
Should the table be analyzed after import?
a tbl
object pointing to the table in database dest
.