Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Is there any way to take back up of set of Qlik apps without data.
Limit load/ Reduce data <-- These are something which we have to manually do to reduce data. Which is very difficult when we have more number of apps.
Scenario:
Say We have 50 apps each 300 MB . So we have to back-up of all apps automatically on daily basis. Any help ??
Thanks For the Start Guys!
Finally Done it simple way
Add this script in every application
//LET vVar=1; //un comment only for the first time reload then permanently comment it
if ($(vVar)=0) then
SET vVar=1;
EXIT Script;
else
//Whole Application Scripting part comes here ;
endif;
Now Comes the batch Part
"C:\Program Files (x86)\QlikView\qv.exe"/r /vvVar=0 "<qvw Path>"
/r for reload and save /v to pass variable
Place the Above code in Batch file then run it saves application with out data
Any other way kindly post those also
Hi
did you tried this option?
I want apps from Server to be copied to local.Correct me if am wrong, Use Backup option will do verisoning and save duplicate of the app with data, but I need without data
hello
you can write a macro in a .qvw (whiwh will be reloaded automatically on the server)
which reads all .qvw, open them and save them without data in a folder
(you can take document analyser as model and modify it slightly)
i think there is no direct way to do it.
macro im not sure.
see :
qlikview document analyzer
theres is a macro which open all .qvw to analyze them
you need to add a save() to copy the .qvw without data where you want
Ok thank you. Let me try and see in Macro
As stated earlier we don't have any direct way to achieve this without macro .....other option is to go the paid power tools
Hi Aswin,
When the application is huge, it will take time to open for Reducing and may consume more CPU/memory utilization (depends on the Computer config).
Execute the below command in command prompt, application will open with no time with reduced data, you just need to save it.
"C:\Program Files\QlikView\qv.exe"/nodata "D:\Test\Application_name.qvw"
change requires only at the second half (D:\Test\Application_name.qvw)
For multiple QVWs to reduce, you can try such commands with different Application names put in txt file save it as .bat. Double click the .bat file to run the commands.
Regards,
Shyam
Whats that?