Currently, in my project, Weblogic8.1 and Oracle is used, but lots of business logic is implemented using Oracle stored Packages, many of these packages have a package level small readonly lookup table(like index-by table or nested table), which is populated with data from database, once the package is called, and is accessed very often in subsequent calls of stored procedures.
Since, in Weblogic server, a connection pool is maintained, and those package level lookup tables would be stored as session data in oracle PGA, I'm afraid this might cause oracle database server to be overloaded.
to fully take advantage of middleware cache service that weblogic provide, should I move those business logic out of oracle and implement them using like read only entity bean?
any help appreciated!
-
to use Entity Bean or Oracle stored Package? (1 messages)
- Posted by: Robert Strong
- Posted on: September 29 2005 18:33 EDT
Threaded Messages (1)
- to use Entity Bean or Oracle stored Package? by sawan parihar on October 07 2005 00:17 EDT
-
to use Entity Bean or Oracle stored Package?[ Go to top ]
- Posted by: sawan parihar
- Posted on: October 07 2005 00:17 EDT
- in response to Robert Strong
Hi,
Putting the business logic in the stored procedure doesn't sounds that good. It will bemuch faster as compared to entity beans but depends that how manu PL/SQL programmers are there in your company.
Entity beans isn't that good option and you may want to move your businees logic in session beans..
Hope it helps.