Logical database design [message #124715] |
Tue, 21 June 2005 01:30 |
hafeez_splendid
Messages: 15 Registered: June 2005 Location: india
|
Junior Member |
|
|
Can anyone tell me what are all parameters of Logical database which are to be consider while performing database design for getting better performance.
I got to know some of them,such as,
1.Connection Pool size
2.Index Pool size
3.Connection threads etc.,
I dont have much idea about this. Please throw some light over this .
Thanks in advance
|
|
|
Re: Logical database design [message #124847 is a reply to message #124715] |
Tue, 21 June 2005 16:08 |
andrew again
Messages: 2577 Registered: March 2000
|
Senior Member |
|
|
"Logical database design" means logical design of ERD (where you have entities, attributes and M:M relationships) as opposed to physical database design where you have tables, columns, M:M resolving tables etc). Connection pooling is just a way to more efficiently create connections to the database for a large (say > 200) number of concurrent users.
|
|
|
|
|
|
Re: Logical database design [message #125566 is a reply to message #125504] |
Mon, 27 June 2005 13:20 |
andrew again
Messages: 2577 Registered: March 2000
|
Senior Member |
|
|
There are no specific parameters I know of specifically related to connection pooling. Are you talking about Oracle databse built in connection pooling/sharing capability mode (MTS = old name; shared server mode = new name). Or are you thinking about connection pooling from a middle tier like an application server?
Connection pooling is used to reduce the number connections (which each consume memory and other resourses) specifically when open connections are idle and there are a large number of concurrent users. OLTP is often characterised by large number of concurrent users and short individual transactions or queries. Reporting systems are often characterised by smaller numbers of users and having longer queries.
Database parameters would be influenced by the number of concurrent connections to the database. See PGA, large pool etc. parameters.
|
|
|