InterviewSolution
Saved Bookmarks
| 1. |
How to organize connection pools? |
|
Answer» There should be two separate connections if you are using adapter notifications and adapter services. If not, you may receive strange ERRORS regarding transactions, etc. Moreover, don't share connection pools with different functional areas, even when they point to the same database. If you share connection pools with different functional areas then:
Having separate pools for each package generally seems to work fairly well (THOUGH not a hard and fast rule), since your packages are generally divided up ACCORDING to the functional area. |
|