Hi all,

I have a stored procedure that currently has 3 cursors. One of them is definitely required, but the other 2 are used ONLY to get past the 'NO ROWS FOUND' ORA error when doing a SELECT INTO cluase.

The most rows the SELECT INTO will return is 1 (I know this from the data) - but there are definitely cases where I will get no results.

Is there no way I can use SELECT INTO with a 'do this if there are no rows found' clause? I do not want to use 2 extra cursors if I do not have to.

Thanks in advance,

Keith