Reputation: 11
I am creating a dataflow in Azure Data Factory . I have to join two Data source on a column which is binary (VARBINARY(MAX)). The validation shows me this error : Expression's type 'binary' is not compatible with left side expression's type 'binary'
How to JOIN using binary in ADF JOINS ? Validation Error on JOIN Binary column
Upvotes: 0
Views: 479
Reputation: 11
I solved this by using function hex()
JOIN on hex(column1) == hex(column2).
Upvotes: 1