Find chained rows in table
-- First, analyze the table as below:
oracle configurationintermediate
by OracleDba
16 views
-- First, analyze the table as below:
123
ANALYZE TABLE SCOTT.EMPTABLE LIST CHAINED ROWS;
select count(*) from chained_rows where table_name='EMPTABLE';
The output of this query returns the number of chained rows in that table.Please to add comments
No comments yet. Be the first to comment!