I'm a newbie with pl sql and I'm facing some problems with inserting into nested tables (I'm using these just to test a procedure). So my code is:
insert into t_prenotazioni
(nro_cliente, data_disponibilita)
values
(righe.nro_cliente, v_data_disponibilita);
where t_prenotazioni is a table of a type defined by me, righe.nro_cliente is a value that I get from a cursor and v_data_disponibilita is a variable. The error that I get is:
PLS-00330 invalid use of type name or subtype