
Partner - Creator
2022-06-02
11:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Read a SQL field with the type binary
Hello together,
i have a connection to a SQL Server. Everything fine, but type of the field "GGUID" is binary.
The result of the dataload in Qlik is:
How can i convert the field GGUID during the load process data that i can use it?
Thanks to all!
Frank
521 Views
1 Reply

Contributor III
2022-06-02
12:44 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you just want to load the binary(16) data type into Qlik in string format, with the same look as in your screenshot, Why not modify your SQL statement to convert/cast binary to varchar like,
SQL SELECT
CONVERT(VARCHAR(100), GGUID, 1) AS sGGID
CONVERT(VARCHAR(100), GGUID, 1) AS sGGID
Angela Z.
495 Views
