Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I like to understand how to save various tables of one qv app (qvw) into one qvd
tanks
You don't. You make one QVD per table.
Thanks John Witherspoon
John is right thats only one table per QVD.
But i needed to do this thing here and we made it here concatenating all tables into one big logic table with a field that holds the table name.
Then when reloading from this crazy qvd we use
TABLE_1:LOAD A,B,C FROM CRAZY_QVD WHERE TABLE = 'TABLE 1';
TABLE_2:LOAD D,E,F,G FROM CRAZY_QVD WHERE TABLE = 'TABLE 2';
...
Thats a way to do it...
best regards
Fernando