What criteria determines when code should be pinned?

What criteria determines when code should be pinned? Using the following SQL do I pin those with the most loads? Runs? Or some other criteria?
SELECT Owner, Name, Type, Sharable_mem, Loads, Kept, Executions, Locks,
Pins   FROM v$db_object_cache  WHERE type in ('PROCEDURE','PACKAGE 
BODY', 'PACKAGE', 'FUNCTION', 'TRIGGER', 'SEQUENCE')
ORDER BY 5
DESC

    Requires Free Membership to View

Choose to pin objects based first on number of executions and second on size (sharable_mem). If two objects have the same number of executions and you must choose between them, pin the larger of the two.

This was first published in December 2005

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.