Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: dbms_job and the 'what'

Re: dbms_job and the 'what'

From: Kai Sodemann <Kai.Sodemann_at_memo.ikea.com>
Date: Wed, 23 Feb 2000 15:13:33 +0100
Message-ID: <890pvb$482$1@mailgate.ikea.com>


Hi

Try this:

    create or replace foo(p_char in varchar2) is     v_jobno number;
    begin
    dbms_job.submit(v_jobno,

          'dummy_job('||p_char||');',
   sysdate + .0007,
   NULL,
   FALSE);
    commit;
    end foo;

regards
Kai Received on Wed Feb 23 2000 - 08:13:33 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US