Removed bind parameter.

git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@3992 248e525c-4dfb-0310-94bc-949c084e9493
This commit is contained in:
hardya
2008-03-14 11:10:04 +00:00
parent 674689e0d2
commit 792890a15e

View File

@@ -1,10 +1,12 @@
declare
l_job number;
begin
sys.dbms_job.submit(job => :job,
sys.dbms_job.submit(job => l_job,
what => 'begin
mip_quotation.lapse_quotes_job;
end;',
next_date => to_date(to_char(SYSDATE, 'dd-mm-yyyy') || ' 00:00', 'dd-mm-yyyy hh24:mi'),
interval => 'SYSDATE+1');
next_date => trunc(SYSDATE)+1,
interval => 'trunc(SYSDATE)+1');
commit;
end;
/