我正在尝试使用模式下的 shinyR 访问 Redshift 上的一些表,我可以使用库(RPostgresSQL)连接到不在模式下的表,所以我知道这部分正在工作:
pconn_r <- dbConnect(RPostgres::Postgres(),
host = "xxxxxxxxxxxx",
port = "5439",
user = "rcd_admin",
password = "xxxxxxx",
dbname = "xxxx"
)
但是我无法使用以下命令访问架构 synapps 下的表 fr__synapps_drug__outpatient_index :
sql_command <- "Select cip13_code,cis_label,presentation_label,brand,period,hco_code,hco_label,hco_code_type,hco_city,bse,rem,unit from synapps.fr__synapps_drug__outpatient_index"
outpatient <- dbSendQuery(pconn_r, sql_command)