带有事务块的 Python Postgres 查询
Posted
技术标签:
【中文标题】带有事务块的 Python Postgres 查询【英文标题】:Python Postgres query with transaction block over single connection 【发布时间】:2018-11-02 03:38:14 【问题描述】:目前我有两个单独的语句被传递给 Postgres (Greenplum)。 1. 截断表格 2. 使用 \copy
加载数据myStr="export PGPASSWORD=" + dbPass + "; psql -h " + dbHost + " -p " + dbPort + " -d " + dbName + " -U " + dbUser + " -c " + "\"" + "truncate table " + dbTable + ";\""
print(myStr)
subprocess.call(myStr,shell=True)
myStr="export PGPASSWORD=" + dbPass + "; psql -h " + dbHost + " -p " + dbPort + " -d " + dbName + " -U " + dbUser + " -c " + "\"" + "\\" + "copy " + dbTable + " from " + "'" + csvfile + "' with " + copyOpts + ";" + "select count(*) from " + dbTable + ";\""
print(myStr)
subprocess.call(myStr,shell=True)
有时加载有错误但截断已经发生,所以我试图在一个连接中运行这两个语句,这样如果数据加载失败,我可以这样放置一个事务块(BEGIN ... COMMIT;)将回滚到截断发生之前。
我尝试了以下方法:
myStr="export PGPASSWORD=" + dbPass + "; psql -h " + dbHost + " -p " + dbPort + " -d " + dbName + " -U " + dbUser + " -c " + "\"" + "truncate table " + dbTable + ";" + " \\" + "copy " + dbTable + " from " + "'" + csvfile + "' with " + copyOpts + ";" + "select count(*) from " + dbTable + ";\""
print(myStr)
解析为命令:
export PGPASSWORD=abcde;
psql -h abcde.testserver.corp
-p 5432 -d namem -U username -c
"truncate table schema.example;
\copy schema.example from
'/home/testing/schema/schema.example_export.csv'
with header null as '' escape 'off' delimiter E',' ;
select count(*) from schema.example;"
但是我得到了错误:
错误:“\”处或附近的语法错误
我认为这是因为 \
命令必须位于单独的行上。
有没有办法将命令拆分为单独的行,以便我可以在单个连接中执行所有命令?
【问题讨论】:
【参考方案1】:问题在于,如果您使用-c
选项,则无法将反斜杠命令与其他命令分开。您可以使用echo
将您的命令通过STDIN
发送到psql
:
export PGPASSWORD=abcde;
echo "truncate table schema.example;
\copy schema.example from '/home/testing/schema/schema.example_export.csv' with header null as '' escape 'off' delimiter E',' ;
select count(*) from schema.example;" | psql -h abcde.testserver.corp -p 5432 -d namem -U username
这有点笨拙。最好使用subprocess.Popen
theCommand = """truncate table schema.example;
\copy schema.example from
'/home/testing/schema/schema.example_export.csv'
with header null as '' escape 'off' delimiter E',' ;
select count(*) from schema.example;"""
theProcess = subprocess.Popen("psql -h abcde.testserver.corp -p 5432 -d namem -U username",
stdin = subprocess.PIPE, stdout = subprocess.PIPE, stderr = subprocess.PIPE)
theOutput, theErrors = theProcess.communicate(input = theCommand)
但最好的方法应该是避免使用 shell 命令并使用像 PyGreSQL 这样的数据库适配器。
【讨论】:
另一个选择,也许更简单,是使用 SQL COPY 命令,而不是 psql 中的 \copy。 \copy 实际上只是 COPY 的一个包装器。 确认使用第一个回显方法通过管道传递命令。结束语句如下所示: myStr="export PGPASSWORD=" + dbPass + "; echo \"" + "truncate table " + dbTable + ";" + " \\" + "copy" + dbTable + " from " + "'" + csvfile + "' with " + copyOpts + ";" + "select count(*) from " + dbTable + ";\"" + " | psql -h " + dbHost + " -p " + dbPort + “-d”+dbName+“-U”+dbUser以上是关于带有事务块的 Python Postgres 查询的主要内容,如果未能解决你的问题,请参考以下文章
Spring 事务和 postgres(VACUUM,在事务外部运行)