Oracle 11gR1
DBA_TABLESPACES
describes all tablespaces in the database.
USER_TABLESPACES
describes the tablespaces accessible to the current user. This view does not display the PLUGGED_IN
column.
Column | Datatype | NULL | Description |
|
|
| Name of the tablespace |
|
|
| Tablespace block size |
|
| | Default initial extent size |
|
| | Default incremental extent size |
|
|
| Default minimum number of extents |
|
| | Default maximum number of extents |
|
| | Default maximum size of segments |
|
| | Default percent increase for extent size |
|
| | Minimum extent size for this tablespace |
|
| | Tablespace status: · · · |
|
| | Tablespace contents: · · · |
|
| | Default logging attribute: · · |
|
| | Indicates whether the tablespace is under force logging mode ( |
|
| | Indicates whether the extents in the tablespace are dictionary managed ( |
|
| | Type of extent allocation in effect for the tablespace: · · · |
|
| | Indicates whether the tablespace is plugged in ( |
|
| | Indicates whether the free and used segment space in the tablespace is managed using free lists ( |
|
| | Indicates whether default table compression is enabled ( Note: Enabling default table compression indicates that all tables in the tablespace will be created with table compression enabled unless otherwise specified. |
|
| | Undo tablespace retention: · A · · |
|
| | Indicates whether the tablespace is a bigfile tablespace ( |
|
| | Indicates whether predicates are evaluated by host ( |
|
| | Indicates whether the tablespace is encrypted ( |
Note:
1.
select tablespace_name, block_size, contents, logging, extent_management, allocation_type, segment_space_management, bigfile from DBA_TABLESPACES;
TABLESPACE _NAME | BLOCK _SIZE | CONTENTS | LOGGING | EXTENT_ MANAGEMENT | ALLOCATION _TYPE | SEGMENT _SPACE _MANAGEMENT | BIGFILE |
SYSTEM | 16384 | PERMANENT | LOGGING | LOCAL | SYSTEM | MANUAL | NO |
TEMP | 16384 | TEMPORARY | NOLOGGING | LOCAL | UNIFORM | MANUAL | NO |
CWMLITE | 16384 | PERMANENT | LOGGING | LOCAL | SYSTEM | AUTO | NO |
DRSYS | 16384 | PERMANENT | LOGGING | LOCAL | SYSTEM | AUTO | NO |
ODM | 16384 | PERMANENT | LOGGING | LOCAL | SYSTEM | AUTO | NO |
TOOLS | 16384 | PERMANENT | LOGGING | LOCAL | SYSTEM | AUTO | NO |
USERS | 16384 | PERMANENT | LOGGING | LOCAL | SYSTEM | AUTO | NO |
No comments:
Post a Comment