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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
dseelam
Creator II
Creator II

Data Modeling

Hello All,

This is a totally new project for me working on inventory DB, Help ?

I have 3 views in oracle one for Item master, Customers and BOM, Am pulling them and storing them in to separate qvd's one for each day to have track of history & implemented section access for all 3 tables it is successful

everything was fine but even though I implemented section access I feel like am pulling data every day in to separate QVD which means I am almost pulling every thing again, Is there a way that I can only derive changes (inserted updated and deleted records)? and store them in separate QVD for each day ? so that I can save lot of space along with time ??

Time for reloading data directly from Oracle

test2.PNG

after implementing section access

Test3.PNG

when I compare number of lines for each day in direct reload and incremental load it does not make any sense

6 Replies
Clever_Anjos
Employee
Employee

I usually don´t use incremental load, but "sliced".

My qvd´s  usually are generated like this:

LET Dat=Date(today(),'YYYY-MM-DD');

t:

sql

select [fields] from mytable where date_field = '$(dat)';

Store t into [$(Path)\file_t_$(Dat).qvd](qvd);

Capturar.PNG

Clever_Anjos
Employee
Employee

Section Access is not related to QVD files, but to QVW, ok?

dseelam
Creator II
Creator II
Author

Sorry I miss worded, it is not section access incremental loading

Clever_Anjos
Employee
Employee

Ok, I think your could analyze a different approach like mine

dseelam
Creator II
Creator II
Author

I am also using same logic to pull and save data for each day, but what I am asking is you are loading same data with changes every day in diff QVD's instead of that is there any way to store only changes from 2nd day

hectorvega
Contributor III
Contributor III

Maybe you could use this Sub-Routine for Incremental Load | Qlik Community

This will read only new and modified records

Regards