我有我想分析和使用的是Oracle执行SQL文件cx_Oracle
Python库。 该SQL文件包含经典的DML / DDL和PL / SQL,例如。 它可以是这样的:
create.sql
:
-- This is some ; malicious comment
CREATE TABLE FOO(id numeric);
BEGIN
INSERT INTO FOO VALUES(1);
INSERT INTO FOO VALUES(2);
INSERT INTO FOO VALUES(3);
END;
/
CREATE TABLE BAR(id numeric);
如果我使用的SQLDeveloper或SQL * Plus这个文件,它会被分成3个查询和执行。
然而,cx_Oracle.connect(...)。光标()。执行(...)可以在同一时间只有一个查询,而不是整个文件。 我不能简单地拆分使用字符串string.split(';')
这里建议从cx_oracle执行SQL脚本文件? ),因为两者的评论将被分割(否则会导致错误)和PL / SQL块将不被作为单个命令执行,因而引起误差。
在Oracle论坛( https://forums.oracle.com/forums/thread.jspa?threadID=841025 )我发现,cx_Oracle本身不支持这样的东西作为解析整个文件。 我的问题是 - 有没有为我做到这一点的工具吗? 例如。 一个Python库我可以打电话给我的文件分割成疑问?
编辑:最好的解决方案似乎是使用SQL * Plus直接。 我用这个代码:
# open the file
f = open(file_path, 'r')
data = f.read()
f.close()
# add EXIT at the end so that SQL*Plus ends (there is no --no-interactive :(
data = "%s\n\nEXIT" % data
# write result to a temp file (required, SQL*Plus takes a file name argument)
f = open('tmp.file', 'w')
f.write(data)
f.close()
# execute SQL*Plus
output = subprocess.check_output(['sqlplus', '%s/%s@%s' % (db_user, db_password, db_address), '@', 'tmp.file'])
# if an error was found in the result, raise an Exception
if output.find('ERROR at line') != -1:
raise Exception('%s\n\nStack:%s' % ('ERROR found in SQLPlus result', output))