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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Data mismatches between source and Qlikview

Hi ,

I have Apache Hbase as my source. Now I am extracting data from hbase to Qlikview using Amazon EMR ODBC driver.

I observed that some of the loaded columns are not matching with hbase data.

For example.  in Hbase a particular column called RSN_SR_KEY contains data as 1,2

But after loading that column into Qlikview, the data shown is 49,50.

Can any one know the reason and a way to rectify/overcome this error.?

1 Reply
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Perhaps the RSN_SR_KEY values are really numbers like 49 and 50, but show as ascii characters. Chr(49) is 1, Chr(50) = 2. Try using the Chr() function on the column:

LOAD

     ...some fields...,

     Chr(RSN_SR_KEY) as RSN_SR_KEY,

     ...some other fields...

FROM

     ....hbase table...

     ;


talk is cheap, supply exceeds demand