gpt4 book ai didi

R语言无法使用postgresqlWriteTable在postgresql中插入

转载 作者:行者123 更新时间:2023-11-29 14:18:33 25 4
gpt4 key购买 nike

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

“在 postgresqlWriteTable(conn, name, value, ...) 中:表 customervalidation 存在于数据库中:正在中止 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 content here

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

最佳答案

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

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

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

关于R语言无法使用postgresqlWriteTable在postgresql中插入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38527839/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com