Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have started to evaluate QlikView Personal Edition (v.10) and want to do some incremental loads. So I took a look in the help and found the STORE command. When I use it, it seems to work fine when the script executes, a file is created (with different size depending on different amount of data) . But when I try to load data from that file later on, there is no data except meta data in xml format. My question, what am I doing wrong? Or is there any setting I need to do? Or is this feature not supported in Personal Edition?
Marcus
Can you please explain the script u r using.
Here is the script:
STORE myColumn FROM myTable into incremantaldata.qvd(qvd);
Test:
LOAD myColumn FROM incremantaldata.qvd;
The file is found but the column "myColumn" does not exists.
Try this
Thank you. Now I realized what I was doing wrong. I forgot the (qvd) instruction in the second statement.