Search notes:

Oracle: DBA_METHOD_PARAMS

select
   met.owner,
   met.method_name,
   met.method_type,
   met.final,
   met.instantiable,
   met.overriding,
   met.inherited,
   listagg( par.param_name || ' ' || lower(par.param_mode || ' ' || par.param_type_name), ', ') within group (order by par.param_no) params,
   res.result_type_name,
   met.method_no
from
   dba_type_methods  met                                                      join
   dba_method_params par  on met.owner        = par.owner       and
                             met.type_name    = par.type_name   and
                             met.method_name  = par.method_name and
                             met.method_no    = par.method_no            left join
   dba_method_results res on met.owner        = res.owner       and
                             met.type_name    = res.type_name   and
                             met.method_name  = res.method_name and
                             met.method_no    = res.method_no
where
   met.inherited = 'NO'                  and
   --
   met.owner     = 'SYS'                 and
   met.type_name = 'JSON_ELEMENT_T'
-- met.type_name = 'JSON_OBJECT_T'
-- met.type_name = 'JSON_ARRAY_T'
-- met.type_name = 'JSON_SCALAR_T'
group by
   met.owner,
   met.method_name,
   met.method_type,
   met.final,
   met.instantiable,
   met.overriding,
   met.inherited,
   res.result_type_name,
   met.method_no
order by
   met.method_name,
   met.method_no
;

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