Search notes:

ORA-22913: must specify table name for nested table column or attribute

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;
/
The following create table statement throws ORA-22913: must specify table name for nested table column or attribute:
create table tq84_tab (
   tab_id      integer,
   obj_tab     tq84_obj_t
);
This create table statement succeeds because it specifies the required table name for the nested table column:
create table tq84_tab (
   tab_id      integer,
   obj_tab     tq84_obj_t
)
nested table obj_tab store as tq84_nt return as locator;
Cleaning up:
drop table tq84_tab;
drop type tq84_obj_t;
drop type tq84_obj;

See also

Other Oracle error messages

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...', 1759612692, '216.73.216.149', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-22913_must-specify-table-name-for-nested-table-column-or-attribute(63): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78