Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Pinning Tables
Well....to a first approximation, yes.
But, the way it used to work was that db blocks (even those from a full scan) went on the hot end of the list, and could still be dropped off the cold end, but it was far far less likely.
Now? Who knows...(well, not me, and I ain't RTFM'ing tonight!)
-----Original Message-----
From: Smith, Ron L. [mailto:rlsmith_at_kmg.com]
Sent: Monday, February 05, 2001 3:06 PM
To: Multiple recipients of list ORACLE-L
Subject: RE: Pinning Tables
Try: ALTER TABLE tablename CACHE;
The table will stay in the buffer cache and not get rolled out. This is basically used for small lookup tables like security tables that are accessed over and over.
Ron Smith
Database Administration
rlsmith_at_kmg.com
-----Original Message-----
Sent: Monday, February 05, 2001 12:46 PM
To: Multiple recipients of list ORACLE-L
No, pinning is for the code: sql, procedures/functions/packages and sequences. Take a look of the package dbms_shared_pool.
Regards.
> -----Mensaje original-----
> De: Kevin Kostyszyn [SMTP:kevin_at_dulcian.com]
> Enviado el: lunes 5 de febrero de 2001 16:36
> Para: Multiple recipients of list ORACLE-L
> Asunto: Pinning Tables
>
> Hi all,
> I have been trying to find some reference on pinning tables in the
> SGA. I
> haven't found anything, all that I am finding is table caching and the
> keep
> buffer pool. Is this all that there is, can I "pin" a table in the
> memory?
> Thanks in advance.
>
> Sincerely,
> Kevin Kostyszyn
> DBA
> Dulcian, Inc
> www.dulcian.com
> kevin_at_dulcian.com
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: Kevin Kostyszyn
> INET: kevin_at_dulcian.com
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Trassens, Christian INET: CTrassens_at_uni2.es Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Smith, Ron L. INET: rlsmith_at_kmg.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Mon Feb 05 2001 - 16:44:38 CST