Links
Home
Oracle DBA Forum
Frequent Oracle Errors
TNS:could not resolve the connect identifier specified
Backtrace message unwound by exceptions
invalid identifier
PL/SQL compilation error
internal error
missing expression
table or view does not exist
end-of-file on communication channel
TNS:listener unknown in connect descriptor
insufficient privileges
PL/SQL: numeric or value error string
TNS:protocol adapter error
ORACLE not available
target host or object does not exist
invalid number
unable to allocate string bytes of shared memory
resource busy and acquire with NOWAIT specified
error occurred at recursive SQL level string
ORACLE initialization or shutdown in progress
archiver error. Connect internal only, until freed
snapshot too old
unable to extend temp segment by string in tablespace
Credential retrieval failed
missing or invalid option
invalid username/password; logon denied
unable to create INITIAL extent for segment
out of process memory when trying to allocate string bytes
shared memory realm does not exist
cannot insert NULL
TNS:unable to connect to destination
remote database not found'>ora-02019
exception encountered: core dump
inconsistent datatypes
no data found
TNS:operation timed out
PL/SQL: could not find program
existing state of packages has been discarded
maximum number of processes exceeded
error signaled in parallel query server
ORACLE instance terminated. Disconnection forced
TNS:packet writer failure
see ORA-12699
missing right parenthesis
name is already used by an existing object
cannot identify/lock data file
invalid file operation
quoted string not properly terminated
Does anyone have experience using inso filters for all kind of documents for

Does anyone have experience using inso filters for all kind of documents for

2004-05-19       - By Juan Cachito Reyes Pacheco
Reply:     1     2     3  

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 (See ORA-06510.ora-code.com): PL/SQL: excepción definida por el usuario no tratada
ORA-06512 (See ORA-06512.ora-code.com): en "CTXSYS.CTX_DOC ", línea 1146
ORA-28575 (See ORA-28575.ora-code.com): no se ha podido abrir la conexión RPC con el agente de
procedimiento externo
ORA-06512 (See ORA-06512.ora-code.com): en línea 12

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

-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
To unsubscribe send email to: oracle-l-request@(protected)
put 'unsubscribe ' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --