Hi pogi,

Maybe you can use this to populate test data, but u have to edit some
values to satisfy your test criteria.

sql> begin
for i in 1..1000 loop
insert into test values ('value1','value2',.....);
end loop;
commit;
end;
/