0

我是 R 新手,并试图在 Postgresql 中插入 R 数据框。每当我尝试执行我的 rscripts.R 时,我都会收到以下错误:

“在 postgresqlWriteTable(conn, name, value, ...) 中:表 customervalidation 存在于数据库中:aborting assignTable”

表customervalidation 已存在于postgresql 中,我正在尝试在此表中插入SampleData.csv 的内容。csv 的所有标题都已经存在于表中,并且它们都是小写的。

命令行参数

./script.R batch SampleData.csv yes no

rscripts.R 内容

#!/usr/bin/Rscript

options(echo=TRUE) # if you want see commands in output file
args <- commandArgs(trailingOnly = TRUE)
print(args)
# trailingOnly=TRUE means that only your arguments are returned, check:
# print(commandsArgs(trailingOnly=FALSE))

batchIndicator <- tolower(args[1])
filename <- args[2]
isHeaderPresent <-args[3]
isRunTheBatch<-args[4]
rm(args)
#Library files
library(RPostgreSQL)
#now check whether it is immediate or batch.
# if it is immediate then real time prediction needs to prepare.
# if it is batch then whole batch set needs to prepare and keep the results in a separate file.
if(isHeaderPresent == "yes")
{
  header = TRUE
}else
{
  if(isHeaderPresent == "no"){

    header = FALSE
  }
}

  print(paste("Processing for Batch mode for filename ", filename))
  # Start body for other function
  data <-read.csv(filename,header = header, sep=",")
  drv <- dbDriver("PostgreSQL")
  con <- dbConnect(PostgreSQL(), dbname = "customervalidation", host = "localhost", port =5432 , user = "user", password = "pwd")
  dbWriteTable(con,"customervalidation",data,row.names=FALSE)
  #end body for other function

以及 SampleData.csv 的内容 CSV 内容在这里

请帮助我找出这里缺少的错误。

4

2 回答 2

3

该错误是不言自明的:该表已经存在。如果您查看手册,您会看到有两个选项:

  • 覆盖逻辑指定是否覆盖现有表。它的默认值为 FALSE。
  • 附加一个逻辑,指定是否附加到 DBMS 中的现有表。它的默认值为 FALSE。

您必须将其中之一指定为 TRUE。

于 2016-07-22T14:07:15.400 回答
1

为了避免像这样写错误

     dbWriteTable(con,"customervalidation",data,row.names=FALSE,append = TRUE)
于 2019-01-08T11:31:38.973 回答