Search notes:

$ORACLE_HOME/rdbms/admin/utlchain.sql

utlchain.sql creates the table chained_rows which is used for the command analyze table … list chained rows.
create table CHAINED_ROWS
(
   owner_name         varchar2(128),
   table_name         varchar2(128),
   cluster_name       varchar2(128),
   partition_name     varchar2(128),
   subpartition_name  varchar2(128),
   head_rowid         rowid,
   analyze_timestamp  date
);

See also

The same table is also created with utlchn1.sql.
ORA-01495: Chain row table not found.

Index