gpt4 book ai didi

sql - R 中的 ODBC/DBI 不会写入 R 中具有非默认架构的表

转载 作者:行者123 更新时间:2023-12-03 03:15:07 28 4
gpt4 key购买 nike

问题

当尝试写入具有非默认架构的表时,DBI 包中的 dbWriteTable 会写入 default.non-default.tablename 而不是写入非default.tablename。我知道 non-default.tablename 存在,因为它显示在我的 SSMS 数据库中。

可重现的示例/我尝试过的

在 SQL Server 中使用非默认架构“guest”创建此表。我将其放入名为“SAM”的数据库中:

CREATE TABLE guest.MikeTestTable(
[a] [float] NULL,
[b] [float] NULL,
[c] [varchar](255) NULL)

#Create a df to insert into guest.MikeTestTable
df <- data.frame(a = c(10, 20, 30),
b = c(20, 40, 60),
c = c("oneT", "twoT", "threeT"))

#Create a connection:
con <- DBI::dbConnect(odbc::odbc(),
.connection_string = "Driver={SQL Server};
server=localhost;
database=SAM;
trustedConnection=true;")

#Try to write contents of df to the table using `dbWriteTable`
DBI::dbWriteTable(conn = con,
name = "guest.MikeTestTable",
value = df,
append = TRUE)

#Create a query to read the data from `"guest.MikeTestTable"`:
q <- "SELECT [a]
,[b]
,[c]
FROM guest.MikeTestTable"

##Read the table into R to show that nothing actually got written to the
##table but that it recognizes `guest.MikeTestTable` does exist:
DBI::dbGetQuery(con, q)

[1] a b c
<0 rows> (or 0-length row.names)

我认为这是一个奇怪的结果,所以我打开了 SSMS,你瞧,表 dbo.guest.MikeTestTable 已创建。任何帮助将不胜感激。

最佳答案

上周发布的 CRAN(与链接到的 @user111417 问题相关)使用新的 DBI::Id() 函数解决了这个问题,其中架构和表名称是独立且明确的。这是一个例子。

library(magrittr)
table_id <- DBI::Id(
schema = "schema_1",
table = "car"
)

ds <- mtcars %>%
tibble::rownames_to_column("car")

# Create the Table
channel <- DBI::dbConnect(
drv = odbc::odbc(),
dsn = "cdw_cache"
)
result <- DBI::dbWriteTable(
conn = channel,
name = table_id,
value = ds,
overwrite = T,
append = F
)

DBI::dbGetQuery(channel, "SELECT COUNT(*) FROM schema_1.car")
# Produces `1 32`

DBI::dbExistsTable(channel, table_id)
# Produces: [1] TRUE

DBI::dbDisconnect(channel)

(感谢 Daniel Wood 在 https://github.com/r-dbi/odbc/issues/191 中提供的帮助。)

关于sql - R 中的 ODBC/DBI 不会写入 R 中具有非默认架构的表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45355885/

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