KEEP 버퍼풀 지침
Computer/IT/DBMS 2007/10/10 16:27 |SQL> conn hr/hr
연결되었습니다.
SQL> select segment_name, blocks from user_segments
2 where segment_name = 'K_EMP';
SEGMENT_NAME
-------------------------------------------------------------
BLOCKS
----------
K_EMP
8
SQL> select table_name, blocks, empty_blocks from user_tables
2 where table_name='K_EMP';
TABLE_NAME BLOCKS EMPTY_BLOCKS
------------------------------ ---------- ------------
K_EMP
SQL> analyze table k_emp compute statistics;
테이블이 분석되었습니다.
SQL> select table_name, blocks, empty_blocks from user_tables
2 where table_name = 'K_EMP';
TABLE_NAME BLOCKS EMPTY_BLOCKS
------------------------------ ---------- ------------
K_EMP 5 3
SQL> rem KEEP 되는 BLOCK의 갯수 5개....
SQL>
'Computer/IT > DBMS' 카테고리의 다른 글
| mysql 컬럼 속성 변경 (0) | 2007/10/23 |
|---|---|
| ORACLE - TABLE CACHE (0) | 2007/10/10 |
| KEEP 버퍼풀 지침 (0) | 2007/10/10 |
| Oracle 영역별 HIT RATIO (0) | 2007/10/10 |
| Oracle 캐시 적중률 측정 (0) | 2007/10/10 |
| Northwind and pubs Sample Databases for SQL Server 2000 (0) | 2007/10/09 |

댓글을 달아 주세요