-
Re: Incremental load
Amila Fernando Feb 6, 2018 2:45 AM (in response to Baarathi V)Hi,
This can be done as below.
1 st you have to define the variable path for vToday for increment data (this has to define if you want to segregate the date by data)
//Load existing data
Load *
from
Sample - Superstore Sales.qvd
(qvd);
concatenate
//Load incremental data to the above
Load * from
[lib://Temp/Sample - Superstore Sales (Excel)$(vToday).xls]
(biff, embedded labels, table is Orders$)
//Store combine data in to qvd
Store Sample - Superstore Sales into Sample - Superstore Sales.qvd;
Drop table Sample - Superstore Sales;
//Refer the newly created "Sample - Superstore Sales.qvd"
Thanks
Amila
-
Re: Incremental load
Tomasz Truszkowski Feb 6, 2018 2:52 AM (in response to Baarathi V)It depends on the characteristic of the data - different scenarios are possible. There's good article:
https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/
-
Re: Incremental load
Baarathi V Feb 6, 2018 3:54 AM (in response to Tomasz Truszkowski)It shows a modified date, but i dont have a field called modified date, In this case how to do?
-
Re: Incremental load
Amila Fernando Feb 6, 2018 4:14 AM (in response to Baarathi V)Hi,
Can you please share the screen shot about modified date?
Regards
Amila
-
Re: Incremental load
Baarathi V Feb 6, 2018 4:23 AM (in response to Amila Fernando)in the below link there is a modified date if I don't have modified date field.How to proceed with it?
https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/
-
Re: Incremental load
Amila Fernando Feb 6, 2018 4:38 AM (in response to Baarathi V)Hi,
I think you have increment data in excel so you don't worry about the modified date, you just maintain the vToday().
If you have all the data in excel including increment you can use Order date on be half of modified date.
Hope this is clear and fulfill you requirement.
Regards
Amila
-
-
-
-