Hi All,
My database is 12.1 with NO CDB.
I have upgrade my APEX 5 to APEX 20.1, everything runs fine, then I download the patch bundle(30990551), when I applied the patch, I am having following errors when running following(step 6 II as I am using embed gateway)
sqlplus / as sysdba" @epg_install_images.sql /u01/app/oracle/product/12.1.0/rdbms/apex20
declare
*
ERROR at line 1:
ORA-22288: file or LOB operation FILEOPEN failed
No such file or directory
ORA-06512: at "SYS.XMLTYPE", line 296
ORA-06512: at line 16
I had a look at epg_install_images.sql and it is calling epg_install_images_nocdb.sql, I saw this line:
create directory APEX_IMAGES as '&1/images'
I suspend it it shall be &1/apex/images as the images is under /u01/app/oracle/product/12.1.0/rdbms/apex20/apex, but I am still this error when I replaced the line with following absolute dir:
create directory APEX_IMAGES as '/u01/app/oracle/product/12.1.0/rdbms/apex20/apex/images'
Anyone has seen this issue?
Thanks