Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear Community,
I have doubt that is there a way that we can create multiple QVD files using single store statement. Let us assume 20 in this case. So can I create 20 QVD files using a single STORE command?
Regards,
Manideep
FOR i = 0 to NoOfTables()-1
LET vTabNam = TableName($(i));
STORE $(vTabNam) into $(vTabNam).qvd (qvd);
NEXT i
FOR i = 0 to NoOfTables()-1
LET vTabNam = TableName($(i));
STORE $(vTabNam) into $(vTabNam).qvd (qvd);
NEXT i
Similar way...
FOR i = 1 to NoOfTables()
LET vTableName = TableName($(i)-1);
LET vOutfile = '$(vTableName).qvd';
STORE [$(vTableName)] INTO
NEXT i