Halting command window on error

timboc

Member²
Is there an easy way to have PL/SQL Developer stop executing commands if it detects an error has occurred? I often write long upgrade scripts and hate running them a line at a time using the pause functionality.

-Tim
 
I guess I could jam my command scripts into a test script, I was hoping to have similar functionality right from within a Command Window.

-Tim
 
Do you mean execution in a command window? If so, try "WHENEVER SQLERROR EXIT FAILURE". This stops processing but does not close the window.
 
Back
Top