Dba tablespace to owner

De wiki.nexiat.fr
Aller à la navigation Aller à la recherche
Fiche express
Type Script SQL*Plus de diagnostic
Domaine Administration (occupation de l'espace)
Voir aussi Dba segment summary · Dba tablespace mapper

Dba tablespace to owner fournit, pour chaque tablespace, la répartition de l'espace occupé par propriétaire et par type de segment, avec la taille cumulée et le nombre de segments. Le complément naturel de Dba segment summary, qui regroupe d'abord par propriétaire plutôt que par tablespace — utile pour répondre à « qui occupe quoi dans ce tablespace ? ».

Script

-- Répartition de l'espace occupé par propriétaire et type de segment,
-- pour chaque tablespace.

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   : Tablespace to Owner                                         |
PROMPT | Instance : &current_instance                                          |
PROMPT +------------------------------------------------------------------------+

SET ECHO      OFF
SET FEEDBACK  6
SET HEADING   ON
SET LINESIZE  180
SET PAGESIZE  50000
SET TRIMSPOOL ON
SET VERIFY    OFF

CLEAR COLUMNS
CLEAR BREAKS
CLEAR COMPUTES

COLUMN tablespace_name FORMAT a30               HEADING "Tablespace Name"
COLUMN owner           FORMAT a20               HEADING "Owner"
COLUMN segment_type    FORMAT a20               HEADING "Segment Type"
COLUMN bytes           FORMAT 9,999,999,999,999 HEADING "Size (in Bytes)"
COLUMN seg_count       FORMAT 9,999,999,999     HEADING "Segment Count"

BREAK ON report ON tablespace_name SKIP 2

COMPUTE SUM LABEL ""              OF seg_count bytes ON tablespace_name
COMPUTE SUM LABEL "Grand Total: " OF seg_count bytes ON report

SELECT
    tablespace_name
  , owner
  , segment_type
  , SUM(bytes)  bytes
  , COUNT(*)    seg_count
FROM
    dba_segments
GROUP BY
    tablespace_name
  , owner
  , segment_type
ORDER BY
    tablespace_name
  , owner
  , segment_type
/

Colonnes / sortie

  • Tablespace Name — avec un sous-total (BREAK/COMPUTE) par tablespace.
  • Owner / Segment Type — répartition à l'intérieur du tablespace.
  • Size (in Bytes) / Segment Count — taille cumulée et nombre de segments, avec un total général en bas de rapport.

Voir aussi