Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
G'day all, I have many years experience with QlikView and Qlik Sense on Prem so I have some code that would expect to work in Qlik Cloud but is not behaving as expected.
Here's the steps:
All the code appears to work correctly except the store statement. The 'Contact' table contains the correct number of rows, but when we view the updated QVD file, it still contains the old number of rows. Qlik says that the QVD has been updated, but the contents are the same as before.
If we run the app a second time, it also is loading the old number of rows in step 2.
In short - the Store statement is not working. Are there any know quirks of the cloud environment that we need to be aware of? We are loading and storing the QVD from the same Space as the App.
Thanks, Barnaby.
G'day All,
Problem solved! Another one of my colleagues found this post. It appears that the problem is that the QVD view page needs to be refreshed independently for each data file.
Cheers, Barnaby.
Hi
Can you paste your qlik code to verify once
G'day @MayilVahanan, thanks for your response.
I have done a bit of work on this since I posted last week and I discovered it is not related to my incremental code. I have boiled it down to this very simple piece of test code - create a table, store it, add a row and store again:
Table1: load 1 as Col1, 'abc' as Col2 AutoGenerate 1;
// Creating a QVD works fine
store Table1 into [lib://DataFiles/Table1.qvd];
concatenate (Table1) load 2 as Col1, 'def' as Col2 AutoGenerate 1;
// Replacing the QVD is not working
store Table1 into [lib://DataFiles/Table1.qvd];
When the QVD is created the first time, it is fine but if you overwrite, the hub says that it has been updated but the contents have not changed. In short, the 'replace qvd' functionality is not working.
One of my colleagues found a work-around. I had been testing in the Data Load Editor and the Debugger, but it works correctly if reloaded from the hub.
I think this is a bug in the Data Load Editor. I'd be interest if anyone else has found this problem. I have found this problem on two different Qlik Cloud instances.
Thanks, Barnaby.
G'day All,
Problem solved! Another one of my colleagues found this post. It appears that the problem is that the QVD view page needs to be refreshed independently for each data file.
Cheers, Barnaby.