I have a db that is set up with replication evironment and has some db_links. So we have Job_queue_process=1 and Job_queue_interval=5 already set up.. Everything works fine.

Now I want to schedule a procedure that is run every minute and I used DBMS_Jobs for that. But though the frequency mentioned is 1 minute, still the procedure kicks of every 6th second, reason being the Job_queue_interval=5 in pfile..
I need that to be at 5 and as well have this procedure kick off every minute or so.. How do I do it??? Thx.