Hi Lucas ,
Welcome to Microsoft Q&A platform and thanks for posting your question here. As I understand your question , you want to load data on daily basis from oracle database to ADLS via ADF pipeline.
To move data from Oracle to Azure Data Lake Storage via ADF, you can use the Oracle connector in the source and the Azure Data Lake Storage Gen2 connector in the sink.
You can schedule the ADF pipeline using scheduled trigger to run daily to move the data from Oracle to Azure Data Lake Storage.
Note: There is no way to append the data in a files in ADLS, it will overwrite the file everytime the pipeline will run. You can use table in sink to append the data or else , keep separate files for every day run and at the end of the week, run a pipeline which takes uses copy activity to merge all the files together into a single file.
Hope it helps. Kindly accept the answer if it helps. Thankyou.