Search notes:

Oracle: PL/Scope

Dictionary views

The identifiers and SQL statements that were gathered with PL/Scope can be queried from the dictionary views

Show used settings for PL/SQL objects

select
   owner,
   name,
   type,
   plscope_settings
from
   dba_plsql_object_settings
where
   owner in (select username from dba_users where oracle_maintained = 'N')
order by
   owner,
   name,
   type;

Space usage

select
   space_usage_kbytes
from
   v$sysaux_occupants
where
   occupant_name = 'PL/SCOPE'
order by
   occupant_name;  

See also

The init parameter plscope_setting.
Base tables whose name start with plscope.

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...', 1758198718, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/PL-SQL/PL-Scope/index(71): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78