Archive
Posts Tagged ‘stored_outline’
invalidate cursor in shared pool
3. June 2011
Leave a comment
Sometimes it’s necessary to invalidate a specific cursor in shared pool.
In the past you had to flush the complete shared pool – which caues ALL sql statements were flushed 😦
In the package dbms_shared_pool you can flush a SINGLE cursor.
Categories: diagnostic
execution plan, optimizer, stored_outline
stored outlines – fixed execution plan
2. May 2011
Leave a comment
stored outlines are designed to force a specific sql-statement to use a fixed execution plan.
This execution plan will be used even the table or the environment changes.
Using stored outlines is dependend on the hash_value (in 10g) / sql_id (in 11g).
In 11g a new feature was implemented – the sql plan managment.
This is a great extension to guarantee save plans.
See more in sql plan managment
Read more…
Categories: administration
execution plan, stored_outline