Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
i am trying to concat some files into one table called "Kategorie". I hoped the script is complete, but i´ve still synthetic keys
I can´t find the fault, could anybody help me?
You are resuing the same table name for multiples uses (which internally gets renamed in QVW)
try this:
KategoryFinal:
NoContatenate LOAD * Inline [
Datum, Anzahlk, Schlussel, Quelle
];
Sub ContatenateKategorie(vFile)
Kategorie:
LOAD ...
..
from $(vFile) ;
Concatenate(KategoryFinal)
LOAD * RESIDENT Kategorie;
DROP TABLE Kategorie;
END SUB
You are resuing the same table name for multiples uses (which internally gets renamed in QVW)
try this:
KategoryFinal:
NoContatenate LOAD * Inline [
Datum, Anzahlk, Schlussel, Quelle
];
Sub ContatenateKategorie(vFile)
Kategorie:
LOAD ...
..
from $(vFile) ;
Concatenate(KategoryFinal)
LOAD * RESIDENT Kategorie;
DROP TABLE Kategorie;
END SUB
Great! It is going nicely.
Thank you very much!