Hi I have an actual pdf file that is stored in the local oracle server. I am experimenting with utilizing UTL_FILE.FCOPY to try to copy a pdf file to a different directory within the same server. It does the actual process of copying the file however, when it is opened it has mostly blank pages.
begin
UTL_FILE.FCOPY ( 'EPAPER_UPS_2019' , --THIS IS A ORACLE DIRECTORY
'Test\_john.PDF', --FILE NAME
'PATHWAYS\_2267' , --THIS IS A ORACLE DIRECTORY
'Test\_john.PDF'); --DESTINATION FILE
end;
actual file vs what is copied
vs. 