nz_dplyr_to_netezza
: dplyr to Netezza tableSave a dplyr object as netezza table. It can drop table when it already exists.
nz_dplyr_to_netezza(DSN, dplyr, outputTable, dropIfExist = F)
Argument |Description
------------- |----------------
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
DSN <- nz_init("NZSQL","ADMIN")
mbp <- nz_table_as_dplyr(DSN,"MPB")
head(mbp)
mbp2 <- nz_dplyr_to_netezza(DSN,mbp,"mbp2")
head(mbp2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.