Synapse ADF error with Oracle Dynamic partitioning
Hi, I am trying to configure a copy activity with dynamic partition for an Oracle dataset in Synapse pipelines but I get the following error:
Error code 9602
ERROR [07001] [Microsoft][ODBC Oracle Wire Protocol driver]Value has not been specified for parameter 1.
ERROR [07001] [Microsoft][ODBC Oracle Wire Protocol driver]Value has not been specified for parameter 2.
ERROR [07001] [Microsoft][ODBC Oracle Wire Protocol driver]Value has not been specified for parameter 3.
ERROR [07001] [Microsoft][ODBC Oracle Wire Protocol driver]Value has not been specified for parameter 4.
Activity ID: e57f0525-25bb-46e9-bb82-ac28a6acfed8
The query I am executing is:
SELECT
*
FROM
schema.table
WHERE ?AdfRangePartitionColumnName <= ?AdfRangePartitionUpbound AND ?AdfRangePartitionColumnName >= ?AdfRangePartitionLowbound
The error pops up using the etl and even in the preview data. The same code is working in Azure Data Factory
Any idea about this issue?