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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Overwriting data with INCREMENTAL LOAD

Hi,

I am trying to do an incremental load from a SQL data warehouse to a QVD. I have the QVD with all the historical data and I run the query to the DWH extracting only the new data correctly. The problem is that when concatenating the QVD historical with the SQL new one , the new data overwrites the old one. This is my script:

MyData:
LOAD
session_id;
SQL SELECT session_id
FROM dw.f_sessions
WHERE bot_fk='35' AND session_id > $(lastSessionID);
Concatenate
LOAD session_id
FROM QVDS\incremental\sessions.qvd (qvd);
STORE MyData
FROM sessionsINTO QVDS\incremental\sessions.qvd;

3 Replies
Not applicable
Author

Hi,

You can try this,


MyData:
LOAD
session_id;
SQL SELECT session_id
FROM dw.f_sessions
WHERE bot_fk='35' AND session_id > $(lastSessionID);
Concatenate (MyData)
LOAD session_id
FROM QVDS\incremental\sessions.qvd (qvd);
STORE MyData INTO QVDS\incremental\sessions.qvd;


Not applicable
Author

Thanks a lot Fernando, it worked Yes

Regards

Not applicable
Author

Available, only select the forum discussion as resolved.