Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Strang value when loading from ODBC table!!

HI,

I am loading data from ODBC table and one of the fields is the State.

When I load it to Qlikview it transulate the text to a strang value..such as GA is showing as C6D340!!

Anybody knows what type of value is that ?? Hex? Binary..and how to fix the transulation?

Thanks

1 Solution

Accepted Solutions
Not applicable
Author

Well, I just found out how to do it.

I used the follwing in my query:

CAST(F.ALADDS AS CHAR(20) CCSID 37)AS ShpToState,

where F.ALADDS is the filed needed to be fixed.

View solution in original post

2 Replies
stephencredmond
Partner - Specialist II
Partner - Specialist II

Hi,

Looks like some sort of encoded value.  What kind of database is it?  Is there an option in the odbc setup to handle encoded vales?

Regards,

Stephen

Not applicable
Author

Well, I just found out how to do it.

I used the follwing in my query:

CAST(F.ALADDS AS CHAR(20) CCSID 37)AS ShpToState,

where F.ALADDS is the filed needed to be fixed.