Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am new to QLIK sense and preparing Data loader QVD, my requirement is to load the incremental data from Oracle Database (table,views).
can any one suggest best possible way to load incremental data.
Regards,
Hassan
Hello!
Read this https://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/
And this is your solution:
QS and QV incremental loading processes are pretty much the same (as shown by vasiliy_beshentsevabove).
There are multiple ways to organize it.
I am usually using a DATE/TIMESTAMP approach:
LastLoad:
LOAD * FROM iLastLoad.qvd' (QVD);
LET MaxDateTime = PEEK ('prevloaddate', 0, 'LastLoad');
DROP TABLE LastLoad;
DATA:
LOAD
*
;
SQL SELECT *
FROM ABC
WHERE "timestamp" > '$(MaxDateTime)';
Hello,
Thanks for your solution, I will try to implement and see the result.
Hello ,
For the below statement I am getting connector reply error.
Is this below statement is correct for incremental load. please help.
Incremental:
LOAD PURCHS_INVC_ID,
MODFCTN_DATE;
SELECT "PURCHS_INVC_ID",
"MODFCTN_DATE"
FROM "AC_PURCHS_INVC_HEDR" where MODFCTN_DATE> $(last_updated_date);