InterviewSolution
Saved Bookmarks
| 1. |
How Would You Handle The Need To Load Multiple Models (ie Multiple Qvws)?? I Don't Think You Can Do Multiple Binary Loads, So What Do You Recommend? |
|
Answer» You can generate QVDs from each model and then LOAD all the QVDs to form the larger model. You can generate all QVDs from a qvw with a SIMPLE loop. You can add this code to each of your model qvws. FOR i = 1 to NoOfTables() LET vTableName = TableName($(i)-1); LET vOutfile = '$(vTableName).qvd'; STORE [$(vTableName)] INTO [$(vOutfile)] (qvd); NEXT iYou can generate QVDs from each model and then load all the QVDs to form the larger model. You can generate all QVDs from a qvw with a simple loop. You can add this code to each of your model qvws. |
|