Search notes:

Oracle: COL_USAGE$

COL_USAGE$ stores data that is required by dbms_stats to determine for which columns histograms need to be created when gathering column statistics.
COL_USAGE$ is maintained by SMON. Apparently, SMON can be triggered to update the table by calling
begin
   dbms_stats.flush_database_monitoring_info;
end;
/
select
   own.name owner,
   obj.name obj_name,
   col.name col_name,
   col.type#,
   col.length,
   col.precision#,
   col.scale,
   col.null$,
   cou.equality_preds,
   cou.equijoin_preds,
   cou.nonequijoin_preds,
   cou.range_preds,
   cou.like_preds,
   cou.null_preds,
   cou.timestamp,
   cou.flags
/* col.deflength,
   col.default$,
   col.intcol#,
   col.property,
   col.charsetid,
   col.charsetform,
   col.evaledition#,
   col.unusablebefore#,
   col.unusablebeginning#,
   col.acdrrescol#,
   col.collid,
   col.collintcol#,
   col.fixedstorage,
   col.spare1, col.spare2, col.spare3, col.spare4, col.spare5, col.spare6, col.spare7, col.spare8, col.spare9, col.spare10, col.spare11, col.spare12, col.spare13
  */
from
   sys.obj$       obj                                    join
   sys.user$      own  on obj.owner# = own.user#         join
   sys.col$       col  on obj.obj#   = col.obj#     left join
   sys.col_usage$ cou  on col.obj#   = cou.obj# and
                          col.col#   = cou.intcol#
where
   own.name = 'RENE' and
   obj.name = 'TQ84_COL_USAGE_TEST';

See also

col$
dbms_stats.report_col_usage
Compare with dba_col_usage_statistics
Column group usage is recorded in col_group_usage$
DML statements monitoring results are stored in mon_mods$ and mon_mods_all$

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758206882, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/data-dictionary/base-tables/col_usage/index(98): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78