I have a record:
subtype dt1_t is POD_SRTR_DT1%ROWTYPE;
dt1 dt1;
I tried then insert a record to the table:
insert into POD_SRTR_DT1 select * from table(dt1);
but this doesn't work because
dt1 is not a
nested table type. How can I insert the row to the table?