Search notes:

Oracle: DBA_OBJECT_SIZE

Sizes, in bytes, of various PL/SQL objects.
This view is created in prvtpool.plb, possibly in relation with dbms_shared_pool.
select
  owner,
  name,
  type,
  source_size,
  parsed_size,
  code_size,
  error_size
from
  dba_object_size
order by
  owner,
  greatest(source_size, parsed_size, code_size) desc;
Github repository Oracle-Patterns, path: /Installed/data-dictionary/object/size/show.sql
The column parsed_size returns the number of bytes of the «flattened» DIANA.
However, it's not possible to estimate the number of DIANA nodes from this value.
See also the PL/SQL error PLS-00123: program too large.

See also

data dictionary

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...', 1758205794, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/data-dictionary/objects/size/index(65): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78