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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

reload parcial script

Hello QV friends,
please I need yo know this:
Is it possible to reload parcial block of SQL sctipt?
example
tab1:
load.... select ...from ..;

tab2:
load.... select ...from ..;

tab3:
load.... select ...from ..;

tab4:
load.... select ...from ..;

If I reload the qvw document the applications loads all table.
Now. I need to knos if is it possible, to reload just a table 3
(tab3)..

Thanks for your always prompt replay.
Best Regards

Slash

Labels (1)
3 Replies
disqr_rm
Partner - Specialist III
Partner - Specialist III

Yes this is possible with partial reloads. Have a look in the help for ADD and REPLACE keywords combined to LOAD statement.

Not applicable
Author

Yes, you can use add keyword prefixeing load keyword in tab3 this

eg

tab1:
load.... select ...from ..;

tab2:
load.... select ...from ..;

tab3:
ADD load.... select ...from ..;

tab4:
load.... select ...from ..;

And reload using CTL+Shift+R

Not applicable
Author

Use 'Add' or 'Concatenate'.