Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Exiting PL/SQL procedures

Status
Not open for further replies.

fatcodeguy

Programmer
Feb 25, 2002
281
CA
Hi. I have a procedure that searches large table records for certain data, and parses it in HTML. Now only so many characters (32767) can be used for this certain data. If, while executing, the process notices that there won't be enough space in the 32767 varchar2 buffer, I want it to display an error message, and stop the procedure? How would I do this ?? Is there an exit command for loops as well?? Thanks
 
You may raise an exception or use EXIT operator (to exit from loop).

Regards, Dima
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top