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 |
Tags
- plugin
- import
- vscode
- VirtualBox
- find
- Eclipse
- Mac
- xargs
- tomcat
- Source
- web.xml
- maVen
- netsh
- bash
- resource
- profile
- IntelliJ
- 네트워크
- Quartz
- Windows 10
- JavaScript
- 단축키
- lsof
- ssh
- context
- port
- Windows
- grep
- GIT
- 줄바꿈 문자
Archives
- Today
- Total
develog
DROP, DELETE, TRUNCATE 차이점 본문
DROP
- 테이블 삭제
- Rollback 불가
- 테이블이 사용했던 Storage 를 모두 Release
DELETE
- 데이터만 삭제
- Commit 전에는 Rollback 가능
- Storage Release 안됨
TRUNCATE
- 테이블을 최초 생성된 초기 상태로 만듬
- Rollback 불가
- 최초 테이블 생성시 할당된 Storage 만 남기고 Release
'DB > Oracle' 카테고리의 다른 글
oracle outer join or (0) | 2012.12.06 |
---|---|
outer join test (0) | 2012.07.25 |
Comment (0) | 2012.04.10 |
테이블 이름 변경 (0) | 2012.04.10 |
[Oracle] ALTER TABLE (0) | 2012.04.10 |
Comments