essentially what i want to do is batch insert mdsys.sdo_geometry objects in a table.
table definition
create table dummy (id number not null,
geom mdsys.sdo_geometry);
i want to insert ~ 1000000 records into this table something like
insert into dummy id, :geom);
where :id is an array of ids and :geom is an array of objects mdsys.sdo_geometry.
do you think i can do it with direct path loading ?
One additional complication is that the sdo_elem_info and sdo_ordinates attributes are collections (I have set them to 'empty' in my example). If you need to fill them as well, you need a second Array DML process for this.
------------------
Marco Kalter
Allround Automations