i'm trying to insert 1000 images located on my "E" partition on my hard drive
the images named as (img1.jpg, img2.jpg,.....)
colud this be done using insert statement in a loop with counter changing the img(counter).jpg
begin
for i in 1 .. 1000 loop
"insert Statement"
end loop;
commit;
end;