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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Loading Data

I need some help in trying to determine the best way to load new data. There will be an initial load of all data and then each day new files are created and dumped to an FTP server. The files contain the data from the previous day. The file naming convention is as follows:

website_history2009-10-01_200933.csv

website_history2009-10-02_200933.csv

website_history2009-10-03_200933.csv

etc.

Any suggestions on how I could load the additional data from the new files each day?



1 Reply
Not applicable
Author

You can upload two ways:

1 -. Upload all:
website_history *. csv

2 .- Load per day:

Let Today= 'Date(Today(),'YYYY-MM-DD')';
website_history $ (Today) _200933.csv

You can do a QVD, storing the days already loaded and then joining them at the present day.