Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

STORE .... INTO Error

I am stumped by this one. I am running V9 and I have a script with a STORE ... INTO command which seems to be flawed. This script is typed just the same as many of my other qlikview scripts and at one point ran fine however it just began giving me problems. It after the store into command the script finishes and the error loading box pops up. I have tried the following two methods of scripting this and get the same results. Any help would be greatly appreciated. Also does anyone know a way of searching the forums for topics. I have only used this site a few times but have not found a way to search the forums for previous post on my topics.

STORE WH_REP_STOCK into QVD\WH_REP_STOCK.qvd;

STORE * FROM WH_REP_STOCK INTO QVD\WH_REP_STOCK.QVD (QVD);





A

4 Replies
Not applicable
Author

Hi ,

Is QVD is your directort where you store ??? then it may be may be ...

STORE WH_REP_STOCK into ..\QVD\WH_REP_STOCK.qvd;

OR

STORE WH_REP_STOCK into WH_REP_STOCK.qvd;

STORE * FROM WH_REP_STOCK INTO ..\QVD\WH_REP_STOCK.QVD (QVD);

OR

STORE * FROM WH_REP_STOCK INTO WH_REP_STOCK.QVD (QVD);



Rgeards,Bhushan N

boorgura
Specialist
Specialist

Hey,

Make sure you dont have that QVD open in another QVW file.

Or its not marked read-only.

Let me know if this is it or not.

Not applicable
Author

Thanks Rocky but that is not the issue.

Not applicable
Author

I have the exact same issue (but with V8.5). Nothing wrong with the script untill suddenly some day it stopped working. If I copy it into a new app and run it - no problems, no problems in debug mode either - but next day it fails again. I have come to the conclusion that either my machine runs out of memory as it is a large table, or that the table is locked due to updates in the table when I try to extract it.

I will try to load it only weekends to see if that helps.