我有一个 SQL 文件,我想使用cx_Oracle
python 库在 oracle 中解析和执行它。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(...).cursor().execute(...) 一次只能接受一个查询,而不是整个文件。我不能简单地使用拆分字符串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))