ORA-22288

Error: ORA-22288: file or LOB operation string failed string

Causa: The operation attempted on the file or LOB failed.

Acción: See the next error message in the error stack for more detailed information. Also, verify that the file or LOB exists and that the necessary privileges are set for the specified operation. If the error still persists, report the error to the database administrator.

COMENTARIOS:

por rafaelcarmonaa@gmail.com | 18/02/2009 08:33:55

RE: ORA-22288

Revisar el nombre del archivo. Sobretodo el tema de las Mayúsculas y Minúsculas en el nombre.
En mi caso, el ORACLE se encuentra instalado en un servidor UNIX, el procedimiento que estaba utilizando convertía el nombre del archivo a MAYÚSCULAS cuando recibe el parámetro.
Al ejecutar el procedimiento, me generaba el siguiente error.
ERROR - ORA-22288: file or LOB operation FILEOPEN failed No such file or directory
Eliminé el UPPER a la variable v_ARCHIVO y ejecute el proceso sin errores.
l_bfile := BFILENAME('EVEREST',v_ARCHIVO);
DBMS_LOB.FILEOPEN(l_bfile,DBMS_LOB.FILE_READONLY);
DBMS_LOB.LOADFROMFILE(l_blob,l_bfile,DBMS_LOB.GETLENGTH(l_bfile));
DBMS_LOB.FILECLOSE(l_bfile);
Salu2.