Frequently accessed objects [message #170071] |
Mon, 01 May 2006 23:57 |
anandhi
Messages: 31 Registered: April 2006 Location: Chennai
|
Member |
|
|
Hi
The objects are frequently accessed by the users. For example if i have a index object and it is accessed frequently.
I have to place the frequently accessed objects in the memory itself for faster transaction.
Can anyone suggest how should i do it?
Anandhi
|
|
|
|
Re: Frequently accessed objects [message #170118 is a reply to message #170071] |
Tue, 02 May 2006 03:27 |
dhar_kiran
Messages: 7 Registered: November 2005 Location: Delhi
|
Junior Member |
|
|
if u want to keep that object in shared pool then use
dbms_shared_pool.keep(object_name,object_type) procedure
if u want to keep that object in buffer pool then use
buffer_pool in alter or create statement, or use CACHE
|
|
|