When doing a sql call via ODBC connection to a table I get KEY fields returned in Alteryx like this:
DB_KEY
16 Bytes
I have to convert the field in the Input Tool via sql [using to_alphanum(DB_KEY) as DB_KEY,] for Alteryx to show the value in the Browse Tool which returns this (what I want to see)
DB_KEY
005056B8435A1EDBA8AAEAC7C77BA0F2
I looked at the Convert Blob tool, but that requires you know the fields and only 1 at a time. I have tables that may have 1,2 or even 10 of these KEY fields.
I looked at Transpose tool however the Transpose tool automatically drops BLOB data types.
I also looked at Multifield formula tool and Blob is not an option there either.
Any thoughts on how to convert these KEY fields to Text would be greatly appreciated.