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?
feedback
|
migrated from stackoverflow.com Nov 22 '09 at 3:34
This question came from our site for professional and enthusiast programmers.
|
Another way is to use this command in the batch file:
| |||||||||||||
feedback
|
|
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 | |||||||||||
feedback
|
|
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. | |||||
feedback
|
|
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.) | |||||
feedback
|
|
You can also do this in your shell script.
You might need to escape the ";" with a \. | |||
|
feedback
|
|
exit | SQLPLUS /@ @ This is the correct solution, i have tried it's working | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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 | |||
feedback
|