Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: intermedia text and dbms_job problem
Sai,
Thank you so very much! It worked perfectly!!!
Bill
Bill Tantzen
University of Minnesota Libraries
tantz001_at_tc.umn.edu
612-626-9949 (office) 612-250-6125 (cell)
-----Original Message-----
Sai Selvaganesan
Sent: Wednesday, October 08, 2003 3:19 PM
To: Multiple recipients of list ORACLE-L
bill
this is a bug..infact it was happening in 8i and oracle said they will
try to fix in 9i.
u have to call the procedure in the ur job and embed the sync index in
ur procedure.
here is a snippet.u can try this way.
create or replace procedure i_doc_sync
is
begin
ctx_ddl.sync_index( idx_name => 'prb_title');
end;
declare
v_job number;
begin
dbms_job.submit( job=>v_job, what=>'i_doc_sync;', next_date=>sysdate, interval=>'sysdate+1/24');
end;
that should work
sai
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Bill Tantzen
INET: tantz001_at_tc.umn.edu
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Wed Oct 08 2003 - 15:59:25 CDT