Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Michiel_QV_Fan
Specialist
Specialist

Value in access is changed when loaded

In access I have value 46 with field settings: text.

Loading with QlikView 12 the value is stored in QVD as 046.

The load has no transformations. Pure ODBC to access, load * and store.

I have no clue why this happens.

Labels (2)
1 Solution

Accepted Solutions
marcus_sommer

Qlik doesn't have data-types else the data will be interpreted as string, numeric or dual() - mainly based on the first field-value. In the most scenarios this worked well but in some cases mostly with leading spaces or zeros it may not fit to the wanted results. In such cases the field might be wrapped with a text() function, for example:

load text(field) as field; sql select field from db;

View solution in original post

2 Replies
marcus_sommer

Qlik doesn't have data-types else the data will be interpreted as string, numeric or dual() - mainly based on the first field-value. In the most scenarios this worked well but in some cases mostly with leading spaces or zeros it may not fit to the wanted results. In such cases the field might be wrapped with a text() function, for example:

load text(field) as field; sql select field from db;

Michiel_QV_Fan
Specialist
Specialist
Author