Hy,
i have a package with procedure like this
xxx(refcur out sys_refcursor, numrows out number)
begin
open refcur for
select * from table;
numrows := refcur%rowcount; -- this is ZERO!!!
end xxx;
i need to know if there is some solution to read hove many rows are there without looping thru rows or executing another equal select???
Thanks, Alen
i have a package with procedure like this
xxx(refcur out sys_refcursor, numrows out number)
begin
open refcur for
select * from table;
numrows := refcur%rowcount; -- this is ZERO!!!
end xxx;
i need to know if there is some solution to read hove many rows are there without looping thru rows or executing another equal select???
Thanks, Alen