complete ETL pipe in a single function
pipe_table vectorized
complete ETL pipe
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | pipe_table(
name,
from,
to,
name_target = NULL,
transform = NULL,
from_schema = NULL,
to_schema = NULL,
read_args = list(),
write_args = list(overwrite = TRUE),
asDT = TRUE,
lowercase = FALSE
)
pipe_tables(tables, ...)
etl_pipe(
from,
to,
transform = NULL,
read_args = list(),
write_args = list(overwrite = TRUE),
asDT = TRUE,
lowercase = FALSE
)
|
name |
name of the table |
from |
DBI/R environment/file name/... |
to |
DBI/R environment/file name/... |
name_target |
optional parameter specifying new name of the table at the target |
transform |
transformation function |
from_schema |
optional parameter with name of schema at the origin database |
to_schema |
optional parameter with name of schema at the target database |
read_args |
list of arguments passed to read/extract function |
write_args |
list of arguments passed to write/load function |
asDT |
logical; convert the data.frame to data.table during the etl? |
lowercase |
logical; lowercase all column names? |
tables |
vector of table names |
... |
args passed to 'pipe_table()' |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.