I have a following stored procedure in which I have used a cursor. Depending on whether the cursor return any records or not I need to do some processing.
But I am
I think that it possible only with FETCH. Try to use
FETCH
if myCursor%found then // some body end if;
But if somebody know another way so correct me.