Another option is to use SQL * Plus (the Oracle command line tool) to run the script. You can call this from Python using the subprocess
module - there is a good step-by-step guide here: http://moizmuhammad.wordpress.com/2012/01/31/run-oracle-commands-from-python-via-sql-plus/ .
For a script like tables.sql
(note the intentional error):
CREATE TABLE foo ( x INT ); CREATE TABLER bar ( y INT );
You can use the following function:
from subprocess import Popen, PIPE def run_sql_script(connstr, filename): sqlplus = Popen(['sqlplus','-S', connstr], stdin=PIPE, stdout=PIPE, stderr=PIPE) sqlplus.stdin.write('@'+filename) return sqlplus.communicate()
connstr
is the same connection string as for cx_Oracle
. filename
is the full path to the script (for example, 'C:\temp\tables.sql'
). The function opens a SQLPlus session (with "-S" to disable its greeting message), and then sends an "@filename" to send to it - this tells SQLPlus to run the script.
sqlplus.communicate
sends the command to stdin, waits for the SQL * Plus session to complete, and then returns (stdout, stderr) as a tuple. Calling this function using tables.sql
above will yield the following output:
>>> output, error = run_sql_script(connstr, r'C:\temp\tables.sql') >>> print output Table created. CREATE TABLER bar ( * ERROR at line 1: ORA-00901: invalid CREATE command >>> print error
It takes a little parsing, depending on what you want to return to the rest of your program - you can show the entire output to the user if it is interactive, or scan the word "ERROR" if you just want to check if it works fine.