Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- exec
- alter
- truncate
- Extent
- table
- Tables
- 숨쉬기
- Allocation
- db
- segment
- Tibero
- database
- DROP
- 3층
- stored
- 횡경막
- errno 28
- got errno 28 on write
- tablespace
- 호흡법
- Oracle
- 모음
- mysqldump: got errno 28 on write
- on write
- ASSM
- Deallocation
- MSSM
- Procedure
- errno 28 on write
- 가이드
Archives
- Today
- Total
목록shrink (1)
Notedb
HWM RESET
HWM을 재설정하는 방법 1. truncate table TABLE_NAME delete from TABLE_NAME 대신 truncate 문을 사용하여 data를 제거한다. truncate table 문에는 조건을 걸 수 없기 때문에, 모든 data를 지울 때만 사용할 수 있다. truncate table 를 통해 모든 records를 제거하면 HWM은 초기치로 reset 된다. 2. alter table TABLE_NAME move tablespace TABLESPACE_NAME 해당 table을 지정한 tablespace로 이동시킨다. row id가 변경되기 때문에 같은 테이블스페이스명으로 해도 된다. row id가 변경되기 때문에 모든 index rebuilding 작업이 필요하다 ** 해당 ta..
DATABASE/ORACLE
2023. 10. 20. 15:40