Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Is there any different in partial reload between command line and Ctrl+Shift+R in qv desktop?

Hi

I have a qvw file in 4M size. And a section access script with relpace key words in if clause.

IF reload from qv desktop , the file size is 4M.

IF partail reload from qv desktop ,the file size is 4M;

BUT : IF partail reload by command line like : qv.exe /rp filename.qvw, the file size reduce to 1M.

I spent much time on finding out what 's the different between the 2 modes.

Thank you for every one who can help me and explain this.

section access;
if substringcount(documentname(),'m1') =1 then
replace LOAD [USERID],
[ACCESS],
[PASSWORD],
[ID]
FROM
UserRight.qvd
(qvd) where 1=1;
elseif substringcount(documentname(),'m2') =1 then
replace LOAD [USERID],
[ACCESS],
[PASSWORD],
PRODUCT, [ID]
FROM
UserRight.qvd
(qvd) where 1=1;
elseif substringcount(documentname(),'m3') =1 then
replace LOAD [USERID],
[ACCESS],
[PASSWORD],
[PRODUCT], [YEAR], [ID]
FROM
UserRight.qvd
(qvd) where 1=1;


0 Replies