[Home] [Help]
[Dependency Information]
Object Name: | DBA_FREE_SPACE_COALESCED |
---|---|
Object Type: | VIEW |
Owner: | SYS |
Subobject Name: | |
Status: | VALID |
Statistics on Coalesced Space in Tablespaces
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
TABLESPACE_NAME | VARCHAR2 | (30) | Name of Tablespace | |
TOTAL_EXTENTS | NUMBER | Total Number of Free Extents in Tablespace | ||
EXTENTS_COALESCED | NUMBER | Total Number of Coalesced Free Extents in Tablespace | ||
PERCENT_EXTENTS_COALESCED | NUMBER | Percentage of Coalesced Free Extents in Tablespace | ||
TOTAL_BYTES | NUMBER | Total Number of Free Bytes in Tablespace | ||
BYTES_COALESCED | NUMBER | Total Number of Coalesced Free Bytes in Tablespace | ||
TOTAL_BLOCKS | NUMBER | Total Number of Free Oracle Blocks in Tablespace | ||
BLOCKS_COALESCED | NUMBER | Total Number of Coalesced Free Oracle Blocks in Tablespace | ||
PERCENT_BLOCKS_COALESCED | NUMBER | Percentage of Coalesced Free Oracle Blocks in Tablespace |
Cut, paste (and edit) the following text to query this object:
SELECT TABLESPACE_NAME
, TOTAL_EXTENTS
, EXTENTS_COALESCED
, PERCENT_EXTENTS_COALESCED
, TOTAL_BYTES
, BYTES_COALESCED
, TOTAL_BLOCKS
, BLOCKS_COALESCED
, PERCENT_BLOCKS_COALESCED
FROM SYS.DBA_FREE_SPACE_COALESCED;
|
|
|