Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
See example code below.
I want to create a new variable in a table without having to reload the input data each time.
(ie run the code on lines 15 to 23 without having to run the code on lines 1 to 13 each time)
1 Table1:2
3 LOAD * INLINE [4 a, b5 1, 26 ];7
8 concatenate9
10 LOAD * INLINE [11 a, b12 3, 413 ];
1415 Table2:16
17 Load a,18 b,19 b*10 as c20
21 resident Table1;22
23 Drop table Table1
You can use the below code from line 15 to 21.
if isPartialReload() then
Table2:
Replace
Load a, b,b*10 as c
resident Table1;
EndIF
But I doubt the necessacity since if you drop Table1, you cant use it the next time.
Kiran.