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

Incremental Load using a Loop?

Hi,

I have a requirement to take a group of monthly files, say:

data_file1_20130131

data_file2_20130131

data_file3_20130131

They are of different types and contain different data, but I merge them in the scripts and have a final output into a QVD file.

The next month I would get a new group of files in the same directory, say:

data_file1_20130228

data_file2_20130228

data_file3_20130228

I need to be able to load the new files and check if the data already exists in the QVD, I would do this by loading the QVD with a date column made up from the last 8 characters of the filename.

I want to be able to write the solution to do an incremental load, or a full reload using all the files in the directory, but one group at a time.

So, I was thinking, and would welcome some help please:

  1. Get a list of all files in a directory and take last 8 characters as the date.  This would then give me the unique number of file groups, i.e. in above example we would get 2 unique dates.
  2. Start the load process and check if the solution qvd exists, let's say it's called FACT.qvd

     If qvd does not exist then a full load can take place by looping through the group files

     If qvd exists then select out of the qvd count of records for the date being processed

          If no records then incremental load

Has anyone got example scripts that processes files in groups (or collections) in an iterative manner please ?

Thanks,

Shakil

2 Replies
Gysbert_Wassenaar

Probably easiest is to simply move the source files after they've been processed. But if you want to check the filenames instead look here.


talk is cheap, supply exceeds demand
Not applicable
Author

Thank you... I will try this, but I have already tried a similar script from another site (almost identical) and QV errors saying no resident table Files not found.

Will reply back after trying.