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...