-1
I am trying to insert some random record into a table but am encountering some errors.
I created a test table; `create table teste_p(Handle int, name varchar(20));
I need to insert something like:
create or replace(
i number;
Begin for i in 1 .. 10 loop
Insert into socpro.teste_p(Handle,name) values (here random numbers using dbms.random.value, here random string using dbms.random.string)
end loop;
commit;
end;)