Search notes:

ORA-01495: Chain row table not found.

The analyze table … list chained rows command requires a table named chained_rows to be present. If this table does not exist, the error message ORA-01495: Chain row table not found is thrown.
create table tq84_ora_01495(x varchar2(1));

analyze table tq84_ora_01495 list chained rows;
-- ORA-01495: Chain row table not found.
The table chained_rows can be created with the $ORACLE_HOME/rdbms/admin/utlchain.sql script.

See also

Other Oracle error messages

Index