Search notes:

Predefined collection types for Oracle PL/SQL

Two predefined collection types for Oracle PL/SQL are

Turning lists into tables

Such collection types are useful to transpose a list of values into a table:
select
   column_value as val
from
   sys.ku$_vcnt('one', 'two', 'three');

DBMS_DEBUG_VC2COLL

The intended purpose of dbms_debug_vc2coll is to pass data back to the caller of dbms_debug.execute (See source of dbmspb.sql).
The column name is column_value:
select
   t.column_value
from
   sys.dbms_debug_vc2coll('foo', 'bar', 'baz') t;

KU$_VCNT

vcnt stands for varchar2 nested table and is a table of varchar2(4000).
ku$_vcnt also has a public synonym so that it is not required to prefix with sys:
select
   column_value as val
from
   ku$_vcnt('one', 'two', 'three');
Apparently, there is supposed to be a type named ku$_vcntbig which stores varchar2(32000), but I was unable to locate it.

See also

Using ku$_vcnt to merge values into a flag-table.
Using json_table to turn a comma separated list into a table.

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