Column Name Description
ACCOUNT_STATUS
CREATED User creation date
DEFAULT_TABLESPACE Default tablespace for data
EXPIRY_DATE
EXTERNAL_NAME User external name
INITIAL_RSRC_CONSUMER_GROUP User's initial consumer group
LOCK_DATE
PASSWORD Encrypted password
PROFILE User resource profile name
TEMPORARY_TABLESPACE Default tablespace for temporary tables
USERNAME Name of the user
USER_ID ID number of the user

'Database > Oracle' 카테고리의 다른 글

Db file sequential read  (0) 2010.04.26
USER_CONS_COLUMNS  (0) 2010.04.22
DBA_TABLESPACES  (0) 2010.04.22
DBA_OBJECTS  (0) 2010.04.22
Hash Partition  (0) 2010.04.12

Column Name Description
ALLOCATION_TYPE Type of extent allocation in effect for this tablespace
BLOCK_SIZE Tablespace block size
CONTENTS Tablespace contents: "PERMANENT", or "TEMPORARY"
DEF_TAB_COMPRESSION Default compression enabled or not: "ENABLED" or "DISABLED"
EXTENT_MANAGEMENT Extent management tracking: "DICTIONARY" or "LOCAL"
FORCE_LOGGING Tablespace force logging mode
INITIAL_EXTENT Default initial extent size
LOGGING Default logging attribute
MAX_EXTENTS Default maximum number of extents
MIN_EXTENTS Default minimum number of extents
MIN_EXTLEN Minimum extent size for the tablespace
NEXT_EXTENT Default incremental extent size
PCT_INCREASE Default percent increase for extent size
PLUGGED_IN
SEGMENT_SPACE_MANAGEMENT Segment space management tracking: "AUTO" or "MANUAL"
STATUS Tablespace status: "ONLINE", "OFFLINE", or "READ ONLY"
TABLESPACE_NAME Tablespace name

'Database > Oracle' 카테고리의 다른 글

USER_CONS_COLUMNS  (0) 2010.04.22
DBA_USERS  (0) 2010.04.22
DBA_OBJECTS  (0) 2010.04.22
Hash Partition  (0) 2010.04.12
오라클 기본 용어들  (0) 2010.04.08

Column Name Description
CREATED Timestamp for the creation of the object
DATA_OBJECT_ID Object number of the segment which contains the object
GENERATED Was the name of this object system generated?
LAST_DDL_TIME Timestamp for the last DDL change (including GRANT and REVOKE) to the object
OBJECT_ID Object number of the object
OBJECT_NAME Name of the object
OBJECT_TYPE Type of the object
OWNER Username of the owner of the object
SECONDARY Is this a secondary object created as part of icreate for domain indexes?
STATUS Status of the object
SUBOBJECT_NAME Name of the sub-object (for example, partititon)
TEMPORARY Can the current session only see data that it place in this object itself?
TIMESTAMP Timestamp for the specification of the object

All objects in the database.

'Database > Oracle' 카테고리의 다른 글

DBA_USERS  (0) 2010.04.22
DBA_TABLESPACES  (0) 2010.04.22
Hash Partition  (0) 2010.04.12
오라클 기본 용어들  (0) 2010.04.08
오라클 옵션  (1) 2010.04.02

Hash Partition 이란?

- Hash Partition은 Partitioning Key 값에 해시 함수를 적용하여 Data를 분할하는 방식으로 History Data의 관리의 목적 보다는 성능 향상의 목적으로 나온 개념 입니다
- Hash Partition 은 Range Partition 으로 만들기 힘든 사항 즉, 조건을 주기 힘든 경우, 각 파티션 이 고르게 나누어지지 않아 밸런스을 유지하기 힘든 경우라고 판단되는 경우에 유리합니다.
- Hash Partition 의 경우 각각 다른 파티션에 데이터가 고르게 분산시키기 위해서는 반드시 파티션 의 개수를 명시하여야 하며, 파티션의 수를 2 의 거듭 제곱수 (즉, 2,4,8,16 ….)로 설정하여야 합니다.
- NULL 값은 첫 번째 파티션에 위치하게 됩니다.

'Database > Oracle' 카테고리의 다른 글

DBA_TABLESPACES  (0) 2010.04.22
DBA_OBJECTS  (0) 2010.04.22
오라클 기본 용어들  (0) 2010.04.08
오라클 옵션  (1) 2010.04.02
Sort Merge Join  (0) 2010.04.01

+ Recent posts