The file viewer is always loaded in the BLOB column. If not in the specified table, it will go to wwv_flow_files ( apex_application_files ), which is an alternative option. This should not be an intruder, as you can easily clean the table after completing the BLOB processing.
Vertex process example:
DECLARE v_upl_blob BLOB; BEGIN SELECT blob_content INTO v_upl_blob FROM wwv_flow_files WHERE name = :Px_FILE_BROWSE_ITEM; my_file_write_procedure(v_upl_blob); DELETE FROM wwv_flow_files WHERE name = :Px_FILE_BROWSE_ITEM; END;
For additional documentation, there is always google, Oracle documentation for all the objects used here, or even Oracle forums (for example, OTN apex forums or OTN PL / SQL forums ).
source share