160 DBMS_RESULT_CACHE
The DBMS_RESULT_CACHE
package provides an interface to allow the DBA to administer that part of the shared pool that is used by the SQL result cache and the PL/SQL function result cache.
Both these caches use the same infrastructure. Therefore, for example, DBMS_RESULT_CACHE
.BYPASS
determines whether both caches are bypassed or both caches are used, and DBMS_RESULT_CACHE
.FLUSH
flushes both all the cached results for SQL queries and all the cached results for PL/SQL functions.
This chapter contains the following topics:
See Also:
-
Oracle Database Performance Tuning Guide, for more information about "Result Cache Concepts"
-
Oracle Database PL/SQL Language Reference, for more information about PL/SQL function Result Cache "Using the Cross-Session PL/SQL Function Result Cache"
-
Database PL/SQL Language Reference, for more information about Result Cache Management.
160.1 DBMS_RESULT_CACHE Security Model
Only database administrators should be granted the EXECUTE
privilege for this package.
160.2 DBMS_RESULT_CACHE Constants
The DBMS_RESULT_CACHE
package defines several constants for specifying parameter values.
The following table describes these constants.
Table 160-1 DBMS_RESULT_CACHE Constants
Constant | Definition | Description |
---|---|---|
|
|
Cache has been made temporarilyunavailable. |
|
|
The result cache is in an unusable state. |
|
|
Cache is not available. |
|
|
Cache is available. |
|
|
Cache is available, but synchronizing with Oracle RAC nodes. |
160.3 Summary of DBMS_RESULT_CACHE Subprograms
This table lists the DBMS_RESULT_CACHE
subprograms and briefly describes them.
Table 160-2 DBMS_RESULT_CACHE Package Subprograms
Subprogram | Description |
---|---|
Returns all the block listed cache ids of a local instance. |
|
Adds a |
|
Removes all cache_ids from the block list. |
|
Removes the |
|
Sets the bypass mode for the result cache. |
|
Attempts to remove all the objects from the result cache, and depending on the arguments retains or releases the memory and retains or clears the statistics. |
|
This table function returns a row for each entry that's been added into the ignore list. |
|
This procedure adds to the ignore list a table specified by object number or by owner and table name. |
|
This procedure drops the entire ignore list. |
|
This procedure removes a table specified by object number or by owner and table name. |
|
Invalidates all the result-set objects that are dependent upon the specified dependency object. |
|
Invalidates the specified result-set object(s) |
|
Produces the memory usage report for the result cache. |
|
Returns all the object numbers currently in the block list |
|
Adds objects to the object block list |
|
Clears the entire block list |
|
Removes objects from the object block list. |
|
Checks the status of the result cache. |
160.3.1 BLACK_LIST Function
This procedure is deprecated with Oracle Database 23ai. Use the BLOCK_LIST Function instead.
160.3.2 BLACK_LIST_ADD Procedure
This procedure is deprecated with Oracle Database 23ai. Use the BLOCK_LIST_ADD Procedure instead.
160.3.3 BLACK_LIST_CLEAR Procedure
This procedure is deprecated with Oracle Database 23ai. Use the BLOCK_LIST_CLEAR Procedure instead.
160.3.4 BLACK_LIST_REMOVE Procedure
This procedure is deprecated with Oracle Database 23ai. Use the BLOCK_LIST_REMOVE Procedure instead.
160.3.5 BYPASS Procedure
This procedure sets the bypass mode for the Result Cache.
It sets one of the following bypass modes:
-
When bypass mode is turned on, it implies that cached results are no longer used and that no new results are saved in the cache.
-
When bypass mode is turned off, the cache resumes normal operation.
Syntax
DBMS_RESULT_CACHE.BYPASS ( bypass_mode IN BOOLEAN, session IN BOOLEAN);
Parameters
Table 160-3 BYPASS Procedure Parameters
Parameter | Description |
---|---|
|
|
|
|
Usage Notes
This operation is database instance specific.
Examples
This operation can be used when there is a need to hot patch PL/SQL code in a running system. If a code-patch is applied to a PL/SQL module on which a result cached function directly or transitively depends, then the cached results associated with the result cache function are not automatically flushed (if the instance is not restarted/bounced). This must be manually achieved.
To ensure correctness during the patching process follow these steps:
-
Place the result cache in bypass mode, and flush existing result.
BEGIN DBMS_RESULT_CACHE.BYPASS(TRUE); DBMS_RESULT_CACHE.FLUSH; END; /
This step must be performed on each instance if in a Oracle Real Application Clusters environment.
-
Apply the PL/SQL code patches.
-
Resume use of the result cache, by turning off the cache bypass mode.
BEGIN DBMS_RESULT_CACHE.BYPASS(FALSE); END; /
This step must be performed on each instance if in a Oracle Real Application Clusters environment.
160.3.6 FLUSH Function & Procedure
This function and procedure attempts to remove all the objects from the Result Cache, and depending on the arguments retains or releases the memory and retains or clears the statistics.
Syntax
DBMS_RESULT_CACHE.FLUSH ( retainMem IN BOOLEAN DEFAULT FALSE, retainSta IN BOOLEAN DEFAULT FALSE) RETURN BOOLEAN;
DBMS_RESULT_CACHE.FLUSH ( retainMem IN BOOLEAN DEFAULT FALSE, retainSta IN BOOLEAN DEFAULT FALSE);
Parameters
Table 160-4 FLUSH Function & Procedure Parameters
Parameter | Description |
---|---|
|
|
|
|
Return Values
TRUE
if successful in removing all the objects.
160.3.7 IGNORE_LIST Function
This table function returns a row for each entry that's been added into the ignore list.
Objects in the ignore list are never considered for auto block listing. This allows users to override auto block listing.
Syntax
type ign_recT is record( objNo NUMBER);
type ign_tabT is table of ign_recT;
DBMS_RESULT_CACHE.IGNORE_LIST ()
RETURN ign_tabT pipelined;
160.3.8 IGNORE_LIST_ADD Procedure
This procedure adds to the ignore list a table specified by object number or by owner and table name.
Objects in the ignore list are never considered for auto block listing. This allows users to override auto block listing.
Syntax
DBMS_RESULT_CACHE.IGNORE_LIST_ADD (
objNo IN NATURALN);
Syntax
DBMS_RESULT_CACHE.IGNORE_LIST_ADD (
owner IN VARCHAR2,
name IN VARCHAR2);
Parameters
Table 160-5 IGNORE_LIST_ADD Procedure Parameters
Parameter | Description |
---|---|
|
The |
|
The table specified by |
|
The table specified by |
160.3.9 IGNORE_LIST_CLEAR Procedure
This procedure drops the entire ignore list.
Objects in the ignore list are never considered for auto block listing. This allows users to override auto block listing.
Syntax
DBMS_RESULT_CACHE.IGNORE_LIST_CLEAR;
160.3.10 IGNORE_LIST_REMOVE Procedure
This procedure removes a table specified by object number or by owner and table name.
Syntax
DBMS_RESULT_CACHE.IGNORE_LIST_REMOVE (
objNo IN NATURALN);
Syntax
DBMS_RESULT_CACHE.IGNORE_LIST_REMOVE (
owner IN VARCHAR2,
name IN VARCHAR2);
Parameters
Table 160-6 IGNORE_LIST_REMOVE Procedure Parameters
Parameter | Description |
---|---|
|
The |
|
The table specified by |
|
The table specified by |
160.3.11 INVALIDATE Functions & Procedures
This function and procedure invalidates all the result-set objects that dependent upon the specified dependency object.
Syntax
DBMS_RESULT_CACHE.INVALIDATE ( owner IN VARCHAR2, name IN VARCHAR2) RETURN NUMBER;
DBMS_RESULT_CACHE.INVALIDATE ( owner IN VARCHAR2, name IN VARCHAR2);
DBMS_RESULT_CACHE.INVALIDATE ( object_id IN BINARY_INTEGER) RETURN NUMBER;
DBMS_RESULT_CACHE.INVALIDATE ( object_id IN BINARY_INTEGER);
Parameters
Table 160-7 INVALIDATE Function & Procedure Parameters
Parameter | Description |
---|---|
|
Schema name |
|
Object name |
|
Dictionary object number |
Return Values
The number of objects invalidated.
160.3.12 INVALIDATE_OBJECT Functions & Procedures
This function and procedure invalidates the specified result-set object(s).
Syntax
DBMS_RESULT_CACHE.INVALIDATE_OBJECT ( id IN BINARY_INTEGER) RETURN NUMBER;
DBMS_RESULT_CACHE.INVALIDATE_OBJECT ( id IN BINARY_INTEGER);
DBMS_RESULT_CACHE.INVALIDATE_OBJECT ( cache_id IN VARCHAR2) RETURN NUMBER;
DBMS_RESULT_CACHE.INVALIDATE_OBJECT ( cache_id IN VARCHAR2);
Parameters
Table 160-8 INVALIDATE_OBJECT Function & Procedure Parameters
Parameter | Description |
---|---|
|
Address of the cache object in the Result Cache |
|
Result cache identifier of a SQL cursor or PL/SQL function. |
Return Values
The number of objects invalidated.
160.3.13 MEMORY_REPORT Procedure
This procedure produces the memory usage report for the Result Cache.
Syntax
DBMS_RESULT_CACHE.MEMORY_REPORT ( detailed IN BOOLEAN DEFAULT FALSE);
Parameters
Table 160-9 MEMORY_REPORT Procedure Parameters
Parameter | Description |
---|---|
|
|
Usage Notes
Invoking this procedure from SQL*Plus requires that the serveroutput be turned on.
Examples
SET SERVEROUTPUT ON
EXECUTE DBMS_RESULT_CACHE.MEMORY_REPORT;
160.3.14 OBJECT_BLACK_LIST Function
This function is deprecated with Oracle Database 23ai. Use the OBJECT_BLOCK_LIST Function instead.
160.3.15 OBJECT_BLACK_LIST_ADD Procedure
This procedure is deprecated with Oracle Database 23ai. Use the OBJECT_BLOCK_LIST_ADD Procedure instead.
160.3.16 OBJECT_BLACK_LIST_CLEAR Procedure
This procedure is deprecated with Oracle Database 23ai. Use the OBJECT_BLOCK_LIST_CLEAR Procedure instead.
160.3.17 OBJECT_BLACK_LIST_REMOVE Procedure
This procedure is removed with Oracle Database 23ai. Use OBJECT_BLOCK_LIST_REMOVE Procedure instead.
160.3.18 STATUS Function
This function checks the status of the Result Cache.
Syntax
DBMS_RESULT_CACHE.STATUS RETURN VARCHAR2;
Note:
For more information on the constants, see DBMS_RESULT_CACHE Constants.160.3.19 BLOCK_LIST Function
This table function returns all the block-listed cache ids of a local instance.
Syntax
DBMS_RESULT_CACHE.BLOCK_LIST RETURN BL_TABT;
160.3.20 BLOCK_LIST_ADD Procedure
This procedure adds a cache_id to the block list.
Syntax
DBMS_RESULT_CACHE.BLOCK_LIST_ADD ( cache_id IN VARCHAR2, global IN BOOLEAN DEFAULT FALSE);
Parameters
Table 160-10 BLOCK_LIST_ADD Procedure Parameters
Parameter | Description |
---|---|
|
The |
|
|
160.3.21 BLOCK_LIST_CLEAR Procedure
This procedure removes all cache_ids from the block list.
Syntax
DBMS_RESULT_CACHE.BLOCK_LIST_CLEAR ( global IN BOOLEAN DEFAULT FALSE);
Parameters
Table 160-11 BLOCK_LIST_CLEAR Procedure Parameters
Parameter | Description |
---|---|
|
|
160.3.22 BLOCK_LIST_REMOVE Procedure
This procedures removes the cache_id from the block list.
Syntax
DBMS_RESULT_CACHE.BLOCK_LIST_REMOVE ( cache_id IN VARCHAR2, global IN BOOLEAN DEFAULT FALSE);
Parameters
Table 160-12 BLOCK_LIST_REMOVE Procedure Parameters
Parameter | Description |
---|---|
|
The |
|
|
160.3.23 OBJECT_BLOCK_LIST Function
This table function returns all the object numbers currently in the block list.
Syntax
DBMS_RESULT_CACHE.OBJECT_BLOCK_LIST () RETURN NATURALN;
160.3.24 OBJECT_BLOCK_LIST_ADD Procedure
This procedures adds objects to the object block list. These procedures only have to be run once in the cluster as they take effect everywhere at once. However, they do not persist between cluster shutdowns and startups.
Syntax
DBMS_RESULT_CACHE.OBJECT_BLOCK_LIST_ADD ( objNo IN BINARY_INTEGER);
DBMS_RESULT_CACHE.OBJECT_BLOCK_LIST_ADD ( owner IN VARCHAR2, name IN VARCHAR2);
Parameters
Table 160-13 OBJECT_BLOCK_LIST_ADD Procedure Parameters
Parameter | Description |
---|---|
objNo |
The object number. |
owner |
The owner of the object. |
name |
The name of the table. |
160.3.25 OBJECT_BLOCK_LIST_CLEAR Procedure
This procedure clears the entire block list.
Syntax
DBMS_RESULT_CACHE.OBJECT_BLOCK_LIST_CLEAR ();
160.3.26 OBJECT_BLOCK_LIST_REMOVE Procedure
This procedures removes objects from the object block list.
Syntax
DBMS_RESULT_CACHE.OBJECT_BLOCK_LIST_REMOVE ( objNo IN BINARY_INTEGER);
DBMS_RESULT_CACHE.OBJECT_BLOCK_LIST_REMOVE ( owner IN VARCHAR2, name IN VARCHAR2);
Parameters
Table 160-14 OBJECT_BLOCK_LIST_REMOVE Procedure Parameters
Parameter | Description |
---|---|
objNo |
The object number. |
owner |
The owner of the object. |
name |
The name of the table. |