T timboc Member² Sep 22, 2004 #1 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
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
ScottMattes Member³ Sep 22, 2004 #1 on the test window is the 'run to exception' button, is that what you need?
T timboc Member² Sep 22, 2004 #1 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
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
whip Member² Sep 22, 2004 #1 Do you mean execution in a command window? If so, try "WHENEVER SQLERROR EXIT FAILURE". This stops processing but does not close the window.
Do you mean execution in a command window? If so, try "WHENEVER SQLERROR EXIT FAILURE". This stops processing but does not close the window.