I need to know the number of records of a oracle cursor (an output parameter of a procedure).
The cursor is declared on the body of the Oracle Package and is a type IS REF CURSOR;
Inside the procedure 2 (same package), I call the procedure 1 and get the output cursor.
I need to loop this output cursor and count the quantity of records. I've tested a lot of examples but, any example works.
Thanks,
It is not possible to get count of cursor without iterating over it. Cursor is like pointer to data not data itself. So if you need to count you have to do loop until
cursor%notfound
. There is something likecursor%ROWCOUNT
but documentation says:So only way to get a count is either execute
select count(*) from --the same condition as in cursor
or loop over cursor (fetch all data) and then check%rowcount
or just increment variable for every cursor record however probably the fastest way is bulk fetch all records from cursor and use%rowcount
.