Yes, it is possible to update data from Azure Data Factory (ADF) to an Oracle database table. One approach is to use the Oracle E-Business adapter with BizTalk Server, which enables adapter clients to perform operations on interface tables and views with large data types such as BLOB, CLOB, NCLOB, and BFILE. The adapter exposes Read_<LOBColName> and Update_<LOBColName> operations to read and update data respectively, where <LOBColName> is the name of the column with large data type. If there is more than one column with large data type in a single interface table, the adapter exposes as many read and update operations for that interface table. For more information on how to perform operations on columns with large data types, see the Working with tables that have large data types in Oracle E-Business Suite article.
Another approach is to use the Oracle Database adapter with BizTalk Server, which supports the BFILE data type in tables and stored procedures. The adapter exposes different data types for the BFILE column/parameter based on the operation performed and the LOB artifact (table/procedure) accessed. For example, for the SELECT operation on a table with a BFILE column, the adapter exposes byte[] as the data type representing the binary data constituting the BFILE. For more information on how to perform operations on tables containing BFILE data types, see the Operations on Tables With BFILE Data Types in Oracle Database article.
References: