Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
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

1 Solution

Accepted Solutions
swuehl
MVP
MVP

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
MVP
MVP

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
MVP
MVP

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);