Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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);
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?
I have attached the file
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);