Where can I find the chain rows?
Hi,
I took a query as follows,
select name, value
from v$sysstat
where name = 'table fetch continued row';
name value
------------------------------- ------
table fetch continued row 1306
And then, I looked at dba_tables
select table_name from dba_tables where chain_cnt > 0;
no rows returned
How (which view) can I find the rows (1306)?