Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Yes this is possible with partial reloads. Have a look in the help for ADD and REPLACE keywords combined to LOAD statement.
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
Use 'Add' or 'Concatenate'.