Fragmentacion de Tablespaces.
Este script muestra los extents su ubicación dentro de los tablespace y a su vez permite ver la identificación de la fragmentación de los mismos. Aca se los dejo.. EXITOS !!! -- ----------------------------------------------------------------------------------- SET SERVEROUTPUT ON SIZE 1000000 SET FEEDBACK OFF SET TRIMOUT ON SET VERIFY OFF DECLARE CURSOR c_extents IS SELECT owner, segment_name, block_id AS start_block, block_id + blocks - 1 AS end_block FROM dba_extents WHERE tablespace_name = Upper('&1') ORDER BY block_id; v_last_block_id NUMBER := 0; BEGIN FOR cur_rec IN c_extents LOOP IF cur_rec.start_block > v_last_block_id + 1 THEN DBMS_OUTPUT.PUT_LINE('*** GAP ***'); END IF; v_last_block_id := cur_rec.end_block; DBMS_OUTPUT.PUT_LINE(RPAD(cur_rec.owner || '.' || cur_rec.segment_name, 40, ' ') || ' (' || cur_rec.start_block || ' -> ' || cur_rec.end_block || ')'); END LOOP; END; / PROMPT SET FEEDBACK ON SET PAGESIZE 18 |
Comentarios
eres todo un gran DBA