Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Does anyone have experience using inso filters for all kind of documents for Oracle text
Feighery, thanks your pr evious example is very useful,
please can I abuse from your help and ask you to give me a hand with this function
I want to use this function, because this will helpme to see all contents before opening the document, I am two hors and I can't get work please if you can give one example how using
CTX_DOC.IFILTER(barchivo, theclob);
The following example don't work CTX_DOC.IFILTER returns
ORA-06510: PL/SQL: excepción definida por el usuario no tratada ORA-06512: en "CTXSYS.CTX_DOC", línea 1146 ORA-28575: no se ha podido abrir la conexión RPC con el agente deprocedimiento externo
Without the CTX_DOC.IFILTER command it works
DECLARE CRETURN VARCHAR2(4000); barchivo BLOB;
theclob clob ;
BEGIN DBMS_LOB.CREATETEMPORARY(theclob,TRUE);
DBMS_LOB.OPEN(theclob,DBMS_LOB.LOB_READWRITE);
dbms_output.put_line('longitud 0');
CRETURN := pck_lob.leearchivo('a.pdf','MY_FILES',barchivo);
dbms_output.put_line(SubStr('"Return Value" = '||CRETURN,1,255));
dbms_output.put_line('longitud 1');
CTX_DOC.IFILTER(barchivo, theclob);
dbms_output.put_line('longitud 1 2');
insert into web.test values( 1,the_clob,barchivo );
dbms_output.put_line('longitud 2');
dbms_output.put_line('longitud 3');
DBMS_LOB.CLOSE(theclob);
DBMS_LOB.FREETEMPORARY(theclob);
COMMIT; END; /
Juan Carlos Reyes Pacheco
OCP
Database 9.2 Standard Edition
![]() |
![]() |