I would like to run an Oracle script through SQL Plus via a Windows command prompt. The script does not contain an "exit" command, but I would still like SQL Plus to exit, returning control to the command prompt on completion of the script. My goal is to do this without modifying the script. Is this possible?
|
migrated from stackoverflow.com Nov 22 '09 at 3:34
|
Another way is to use this command in the batch file:
|
|||||||||||||||
|
|
Realizing now that your problem may be with the sql file itself, realize that sqlplus needs to be told to exit. The way I do this is: select * from dual; quit; / (The slash is important. It tells sqlplus to execute the statemet(s) above it.) |
|||||
|
|
Like this: sqlplus /nolog userid/password@tnsname @filename If you put this in a batch file, control will continue with the statement(s) following it. EDIT: My bad, try again with /nolog flag |
|||||||||||
|
|
Yes, it's possible -- generate a wrapper script which sets up SQLPlus appropriately, includes your script (ie. That said, I don't recommend this approach at all -- SQLPlus has a great many gotchas for programmatic use; when writing shell scripts in the past that used Oracle, I built a Python wrapper around it (adding more reasonable error-handling behavior, sane separation of output between stdout/stderr, native CSV output support, and other such goodies), and that worked much better. |
|||||
|
|
You can also do this in your shell script.
You might need to escape the ";" with a \. |
|||
|
|
|
The best way to hide user information and exits is: exit | sqlplus -S user/pwd@server @script.sqlexit is supplied to output of sqlplus forcing it to quit. -S suprresses all server output other then sql query in the script. |
|||
|
|
|
I found this to be the best solution and it works in a terminal or within a script:
|
|||||||
|
|
In your SQL Script add EXIT. Here is example my test.bat file has following: sqlplus user/pwd@server @test.SQL > myLOG.LOG my test.sql file has following: select * from dual; exit |
|||
|
|
For those worried about the security of including your password in the script, AskTom has an article about "identified externally" http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:142212348066 |
|||
|
protected by Chris S♦ Oct 26 '12 at 13:13
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.