66 lines
3.2 KiB
SQL
66 lines
3.2 KiB
SQL
-- +----------------------------------------------------------------------------+
|
|
-- | Jeffrey M. Hunter |
|
|
-- | jhunter@idevelopment.info |
|
|
-- | www.idevelopment.info |
|
|
-- |----------------------------------------------------------------------------|
|
|
-- | Copyright (c) 1998-2012 Jeffrey M. Hunter. All rights reserved. |
|
|
-- |----------------------------------------------------------------------------|
|
|
-- | DATABASE : Oracle |
|
|
-- | FILE : rsrc_plan_status_detail.sql |
|
|
-- | CLASS : Database Resource Manager |
|
|
-- | PURPOSE : List all available resource plans and their status. |
|
|
-- | NOTE : As with any code, ensure to test this script in a development |
|
|
-- | environment before attempting to run it in production. |
|
|
-- +----------------------------------------------------------------------------+
|
|
|
|
SET TERMOUT OFF;
|
|
COLUMN current_instance NEW_VALUE current_instance NOPRINT;
|
|
SELECT rpad(instance_name, 17) current_instance FROM v$instance;
|
|
SET TERMOUT ON;
|
|
|
|
PROMPT
|
|
PROMPT +------------------------------------------------------------------------+
|
|
PROMPT | Report : Database Resource Manager - Resource Plans / Status |
|
|
PROMPT | Instance : ¤t_instance |
|
|
PROMPT +------------------------------------------------------------------------+
|
|
|
|
SET ECHO OFF
|
|
SET FEEDBACK 6
|
|
SET HEADING ON
|
|
SET LINESIZE 180
|
|
SET PAGESIZE 50000
|
|
SET TERMOUT ON
|
|
SET TIMING OFF
|
|
SET TRIMOUT ON
|
|
SET TRIMSPOOL ON
|
|
SET VERIFY OFF
|
|
|
|
CLEAR COLUMNS
|
|
CLEAR BREAKS
|
|
CLEAR COMPUTES
|
|
|
|
COLUMN resource_plan_name FORMAT a30 HEAD 'Resource Plan Name' JUST left
|
|
COLUMN num_plan_directives FORMAT 999 HEAD '# of Plan|Directives' JUST left
|
|
COLUMN cpu_method FORMAT a9 HEAD 'CPU|Method' JUST left
|
|
COLUMN active_sess_pool_mth FORMAT a25 HEAD 'Active Sess|Pool Method' JUST left
|
|
COLUMN parallel_degree_limit_mth FORMAT a30 HEAD 'Parallel Degree|Limit Method' JUST left
|
|
COLUMN queueing_mth FORMAT a13 HEAD 'Queueing|Method' JUST left
|
|
COLUMN status FORMAT a10 HEAD 'Status' JUST left
|
|
COLUMN mandatory FORMAT a10 HEAD 'Mandatory?' JUST left
|
|
COLUMN run_status FORMAT a11 HEAD 'Run|Status' JUST left
|
|
|
|
SELECT
|
|
a.plan resource_plan_name
|
|
, a.num_plan_directives num_plan_directives
|
|
, a.cpu_method cpu_method
|
|
, a.active_sess_pool_mth active_sess_pool_mth
|
|
, a.parallel_degree_limit_mth parallel_degree_limit_mth
|
|
, a.queueing_mth queueing_mth
|
|
, a.status status
|
|
, a.mandatory mandatory
|
|
, DECODE(b.name, a.plan, 'Running', 'Not Running') run_status
|
|
FROM
|
|
dba_rsrc_plans a LEFT OUTER JOIN v$rsrc_plan b ON (a.plan = b.name)
|
|
/
|
|
|