Tab1:
Replace
LOAD * from File1.csv;
|
During both normal and partial reload, the QlikView table Tab1 is initially
dropped. Thereafter new data is loaded from File1.csv and stored in Tab1. |
Tab1:
Replace
only LOAD * from File1.csv;
|
During normal reload, this statement is disregarded.
During partial reload, any QlikView table previously named Tab1 is initially
dropped. Thereafter new data is loaded from File1.csv and stored in Tab1.
|
Tab1:
LOAD a,b,c
from File1.csv;
Replace
LOAD a,b,c from File2.csv;
|
During normal reload, the file File1.csv is first read into the QlikView
table Tab1, but then immediately dropped and replaced by new data loaded
from File2.csv. All data from File1.csv is lost.
During partial reload, the entire QlikView table Tab1 is initially dropped.
Thereafter it is replaced by new data loaded from File2.csv.
|
Tab1:
LOAD a,b,c
from File1.csv;
Replace
only LOAD a,b,c from File2.csv;
|
During normal reload, data is loaded from File1.csv and stored in the
QlikView table Tab1. File2.csv is disregarded.
During partial reload, the entire QlikView
table Tab1 is initially dropped. Thereafter it is replaced by new data
loaded from File2.csv. All data from File1.csv is lost.
|