I have one directory (MPDDIR) on database server on which i am able to store the file generated.
Inside this directory is the backup folder.
I am trying to copy the file to this backup folder with a different name but error ORA-29280: invalid directory path.
UTL_FILE.FCOPY ('MPDDIR',
'abc.dat',
'MPDDIR/backup',
'abc_bkp.dat',
1,
NULL);
What else is required to be done?