run a procedure in database frequently for 2 minutes
Hello ,
THe below script needs to be run in a database very frequently say in a gap of 1 sec in 2 mins
begin
Utl_Mail.Send(
Sender => 'vishal_m@t.com',
Recipients => 'vishal_m@t.com',
subject => 'testing',
MESSAGE => 'Hi there.' );
end;
Please suggest how can we do this
Utl_Mail.Send(
Sender => 'vishal_m@t.com',
Recipients => 'vishal_m@t.com',
subject => 'testing',
MESSAGE => 'Hi there.' );
end;
Please suggest how can we do this
Best regards,
Vishal
0