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

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
thalespe
Contributor II
Contributor II

command line options list?

where i'll find all the command line options, like "qv -r" to reload?

i've been tried "qv /?" but this command its not recognized to list all the option.

what I need is save the qvw file without any data, but in a bat file.

3 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

See here


talk is cheap, supply exceeds demand
thalespe
Contributor II
Contributor II
Author

ok, thanks! but didn't solve my problem.

I can open with /nodata, ok... but I need to save and close too, all commands in one .bat execution. Do you know what I mean?

Anonymous
Not applicable

Hi,

It sounds, like nothing was answered to the question.

Look, you should run qv.exe as

./qv.exe /r /vDeleteData=1 appdatafile.qvw

,where DeleteData is a variable that is passed to script and used in IF statement.

If DeleteData = 1 Then

  Exit Script;

End If

// Here is the body of reload script

...

There is a limitation: the script can't use Binary statement in that case.