Hi Rahul, Thanks for reaching out to Microsoft Q&A.
The error seems to be from the source(oracle) side, not from ADF. Lets try to break down the error and the possible workarounds to fix them.
ORA-22288: File or LOB Operation FILEOPEN Failed: Error occurs when attempting to open a file or LOB (Large Object) in Oracle, but the filename, directory name, or volume label syntax is incorrect. May be due to incorrect directory path or filename, Insufficient privileges or even bugs related to Windows and DBMS_LOB manipulation. To fix this... verify that the file or LOB exists; Check the directory path and ensure it’s correct; Confirm that necessary privileges are set for the operation.
ORA-01555: Snapshot Too Old: Occurs during read consistency when a query tries to access a version of data that has been overwritten by other transactions; May be due to insufficient undo retention (controlled by the UNDO_RETENTION parameter) and small rollback segments. To fix... Increase the UNDO_RETENTION parameter, using larger rollback segments or by ensuring cursors are closed after FETCH and UPDATE statements.
ORA-22924: Snapshot Too Old: Similar to the previous error, this error indicates that the transaction’s snapshot is too old. Also remember to verify your configuration, and permissions, and undo retention settings
Please 'Upvote'(Thumbs-up) and 'Accept' as an answer if the reply was helpful. This will benefit other community members who face the same issue.