How do I pause between one line and another in PL/SQL?
BEGIN
admtt.pck_processamento.setOrgao('262910');
admtt.pck_processamento.setTipo('T');
sp_incluir_processamento_job('262910', 'T', 1251, 43, 'DSVMLT629120171220.TXT'); -- 4611
DBMS_LOCK.SLEEP(15);
sp_incluir_processamento_job('262910', 'T', 1251, 43, 'DSVMLT629120180919.TXT'); -- 1
DBMS_LOCK.SLEEP(15);
END;
I did this, but these weren't the commands I wanted, is there another way?