psql_carf_insert: Insere novos registros a uma tabela existente

Description Usage Arguments Value Examples

View source: R/psql_carf_insert.R

Description

Insere novos registros a uma tabela existente

Usage

1
psql_carf_insert(con, tbl = NULL, data = NULL, batch_size = 50000)

Arguments

con

conexao

tbl

tabela existente

data

data.frame

batch_size

number of rows to be inserted at a time. Defaults to 50.000

Value

NULL se inserido corretamente

Examples

1
2
3
4
5
6
## Not run: 
con <- dbx::dbxConnect()
DBI::dbCreateTable(con, "consumidor", consumidor)
psql_insert(con, "consumidor", consumidor)

## End(Not run)

jjesusfilho/carf documentation built on Nov. 4, 2019, 2:44 p.m.