Description Usage Arguments Value Examples
View source: R/nz_dplyr_to_netezza.R
Save a dplyr object as netezza table. It can drop table when it already exists.
1 | nz_dplyr_to_netezza(DSN, dplyr, outputTable, dropIfExist = F)
|
DSN |
A DSN object exported from nz_init function |
dplyr |
a dplyr object |
outputTable |
name of the output table to store data |
dropIfExist |
Drop if the outputTable does exist. Default is False. Use it with cautious since it removes data in the existing outputTable permanently |
A dplyr object from outputTable
1 2 3 4 5 6 7 8 | ## Not run:
DSN <- nz_init("NZSQL_F","ADMIN")
mbp <- nz_table_as_dplyr(DSN,"MPB")
head(mbp)
mbp2 <- nz_dplyr_to_netezza(DSN,mbp,"mbp2")
head(mbp2)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.