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

SQL truncates text data

HI, Have strange situation: some long strings are truncated by the Qlikview sql. Some of them after 430 char, some after 500 char, randomly. Any ideas?

2 Replies
johnw
Champion III
Champion III

It's possible that QlikView is hitting characters that it interprets as end of line or something.  I don't actually know if it does that, mind you.  If that IS a problem, a way around it would probably be to use the verbatim flag.

SET Verbatim=1;
LOAD your data
FROM your source;
SET Verbatim=0;

I suspect that isn't it, though, as the help text only indicates that Verbatim keeps QlikView from trimming spaces, and I doubt funny characters are the problem anyway.  It's just my only guess right now.

Not applicable
Author

There no special characters. This is what I suspected also. I went to V10 and all is working fine. It is another bug in v9. Thank you