Search notes:

Oracle: DBA_NESTED_TABLES

create or replace type tq84_obj  authid definer as object (
   num number,
   txt varchar2(10)
);
/
 
create type tq84_obj_t as table of tq84_obj;
/
 
 
create table tq84_tab (
   tab_id      integer,
   obj_tab     tq84_obj_t
)
nested table obj_tab store as tq84_nt return as locator;
 
select * from user_objects        where object_name = 'TQ84_NT';
select * from user_tables         where table_name  = 'TQ84_NT';
select * from user_object_tables  where table_name  = 'TQ84_NT';
select * from user_nested_tables  where table_name  = 'TQ84_NT';

drop table tq84_tab;
drop type  tq84_obj_t;
drop type  tq84_obj;

See also

dba_nested_table_cols, dba_xml_nested_tables

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