12 lines
542 B
SQL
12 lines
542 B
SQL
-- -----------------------------------------------------------------------------------
|
|
-- File Name : https://oracle-base.com/dba/11g/result_cache_report.sql
|
|
-- Author : Tim Hall
|
|
-- Description : Displays the result cache report.
|
|
-- Requirements : Access to the DBMS_RESULT_CACHE package.
|
|
-- Call Syntax : @result_cache_report
|
|
-- Last Modified: 07/11/2012
|
|
-- -----------------------------------------------------------------------------------
|
|
|
|
SET SERVEROUTPUT ON
|
|
EXEC DBMS_RESULT_CACHE.memory_report(detailed => true);
|