Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
manideep78
Partner - Specialist
Partner - Specialist

Create multiple QVD's using single store statement

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

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

FOR i = 0 to NoOfTables()-1 

LET vTabNam = TableName($(i)); 

STORE $(vTabNam) into $(vTabNam).qvd (qvd); 

NEXT i

View solution in original post

2 Replies
MK_QSL
MVP
MVP

FOR i = 0 to NoOfTables()-1 

LET vTabNam = TableName($(i)); 

STORE $(vTabNam) into $(vTabNam).qvd (qvd); 

NEXT i

Not applicable

Similar way...

FOR i = 1 to NoOfTables()

  LET vTableName = TableName($(i)-1);

  LET vOutfile = '$(vTableName).qvd';

  STORE [$(vTableName)] INTO (qvd);

NEXT i