Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello i do the following statement,
for each vs_file in FileList('$(vL.DirectoryPath)*.csv')
Temp_Table:
LOAD
*
FROM [$(vs_file)]
(txt, utf8, embedded labels, delimiter is ',', msq, header is 11 lines);
next vs_file
I have a script error saying that the file has not been found.
anyone can help ?
Thanks
Hello,
I have the same problem.
Did you find the solution to this issue?
Thanks!
Hello @Adinaa ,
Do your csv files have the same structure (same field, column, headers at the same row level) ?
I think that the error regarding my issue was
FROM [$(vs_file)]
(txt, utf8, embedded labels, delimiter is ',', msq, header is 11 lines);
The header for the csv files were not the same and as a consequence the statement could not work.