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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Consecutive 'store ... into'

Hi

Does anyone know if you can script consecutive 'store ... into' on the same table that has just been loaded into memory?

To give an example for clarification

Table1:

LOAD * FROM myDbTable;

Store Table1 into ABC.qvd(qvd);

//[Optional modification to Table1 HERE];

Store Table1 into XYZ.qvd(qvd);

I was wondering if the store into script wipes the table out of memory OR just acts like a 'save as'....

Thanks

Oli

1 Solution

Accepted Solutions
sunny_talwar

I believe it is the later (acts like a 'save as'). The Table1 won't be removed until you add DROP Table Table1; in your script.

View solution in original post

1 Reply
sunny_talwar

I believe it is the later (acts like a 'save as'). The Table1 won't be removed until you add DROP Table Table1; in your script.