InterviewSolution
| 1. |
Why Parallel Processing Required? |
|
Answer» Multiple TEMPORARY tables as a POOL of tables will be helpful to achieve parallel processing. Each invocation of your program WOULD have to allocate an unused temporary table, mark it as ‘in use’, use it and RELEASE it back to the pool when you through with it (for each Application ENGINE program you write). Multiple temporary tables as a pool of tables will be helpful to achieve parallel processing. Each invocation of your program would have to allocate an unused temporary table, mark it as ‘in use’, use it and release it back to the pool when you through with it (for each Application Engine program you write). |
|