DBA_FREE_SPACE_COALESCED
describes statistics on coalesced space in all tablespaces in the database.
Column | Datatype | NULL | Description |
|
| | Name of the tablespace |
|
| | Total number of free extents in the tablespace |
|
| | Total number of coalesced free extents in the tablespace |
|
| | Percentage of coalesced free extents in the tablespace |
|
| | Total number of free bytes in the tablespace |
|
| | Total number of coalesced free bytes in the tablespace |
|
| | Total number of free Oracle blocks in the tablespace |
|
| | Total number of coalesced free Oracle blocks in the tablespace |
|
| | Percentage of coalesced free Oracle blocks in the tablespace |
Note:
1.
select * from DBA_FREE_SPACE_COALESCED;
TABLESPACE_ NAME | TOTAL_ EXTENTS | EXTENTS_ COALESCED | PERCENT_ EXTENTS_ COALESCED | TOTAL_ BYTES | BYTES_ COALESCED | TOTAL_ BLOCKS | BLOCKS_ COALESCED | PERCENT_ BLOCKS_ COALESCED |
SYSAUX | 13 | 13 | 100 | 510590976 | 510590976 | 31164 | 31164 | 100 |
SYSTEM | 2 | 2 | 100 | 338624512 | 338624512 | 20668 | 20668 | 100 |
UNDO | 3 | 3 | 100 | 3145728 | 3145728 | 192 | 192 | 100 |
USERS | 1 | 1 | 100 | 52232192 | 52232192 | 3188 | 3188 | 100 |
Oracle data dictionary views
Oracle dynamic performance views
No comments:
Post a Comment