Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to upload multiple csv files of similar type ie. monthly sales data. How do I manage that without combining all the data into a single csv file - do I need to write a script?
Perhaps you can use wildcard loading:
MyCSVData:
LOAD A, B, C ...etc
FROM [D:\CSVData\*.csv] (txt, ....etc);
Thank you! It worked perfectly