Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have montly data stored as individual .qvd files.
If I use
unqualify *;
MyTable:
LOAD * from *.qvd;
all data goes into the table MyTable.
qualify *;
unqualify '*IDX';
I get multiple tables named MyTable-1, MyTable-2 etc.
How can I load the data files into the single MyTable table?
Juerg
Thanks for sharing.
Perhaps
load * from resident temptable;
should be
load * resident temptable;