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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QV do not load all dataset

Dear all,

we have a csv-file with 1.400.000 data. This file could be opend in an editor as well as in Access.

When we want to load it to QV loading stop every time at data no. 711.609.

All the data look correct.

We hope someone could help us.

Attached the file !

Best regards,

Armin

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

The problem is due to the use of double quotes in some lines, you need to use no quotes parameter:

LOAD ID,

     ts,

     duration,

     ecomuser,

     app,

     service,

     action,

     login_username,

     login_usercode,

     login_failed,

     provider,

     search_querY,

     search_fieldoflaw,

     search_doctype,

     search_estype,

     search_datefrom,

     search_dateto,

     search_dateperiod,

     search_hits,

     search_starthit,

     search_hitsperpage,

     getdoc_document,

     getdoc_format,

     getdoc_book,

     jalscr

FROM

[.\jalfact.csv]

(txt, utf8, embedded labels, delimiter is ';', no quotes);

View solution in original post

3 Replies
swuehl
Champion III
Champion III

Just a wild guess:

Is there maybe some content in this line that might be interpreted by QV as file end?

Could you upload this file?

Not applicable
Author

I have attached the file

swuehl
Champion III
Champion III

The problem is due to the use of double quotes in some lines, you need to use no quotes parameter:

LOAD ID,

     ts,

     duration,

     ecomuser,

     app,

     service,

     action,

     login_username,

     login_usercode,

     login_failed,

     provider,

     search_querY,

     search_fieldoflaw,

     search_doctype,

     search_estype,

     search_datefrom,

     search_dateto,

     search_dateperiod,

     search_hits,

     search_starthit,

     search_hitsperpage,

     getdoc_document,

     getdoc_format,

     getdoc_book,

     jalscr

FROM

[.\jalfact.csv]

(txt, utf8, embedded labels, delimiter is ';', no quotes);