我有一個SQL文件,我想在oracle中使用cx_Oracle
python庫進行解析和執行。 SQL文件包含經典的DML/DDL和PL/SQL,例如。它可以是這樣的:使用Python中的cx_Oracle解析PL/SQL和DML/DDL的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(';')
(如這裏建議的execute a sql script file from cx_oracle?)拆分字符串,因爲這兩個註釋都將被拆分(並且會導致錯誤),並且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/%[email protected]%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))
同樣的問題。基本上,Oracle是braindead,實際上沒有任何內置的能力來解析多語句SQL腳本,所以SQL * Plus和SQL Developer和TOAD都實現了它們自己的解析器:-( – 2016-01-08 03:28:41