프로그래머의 삶 Programmer's Life/Database-Oracle&MySQL

오라클 켜기 끄기~- _-;

Oliver's World 2008. 11. 3. 13:53
728x90

오라클 끄기~

 

shutdown  normal       - 하던작업 완전 종료후

                immediate  - 현재 트랜젝션 종료후 디비 종료

                abort         - 현재작업 무시 바로 종료 (사고칠려면..)


오라클 켜기~


startup  nomount

            mount

            open



SQL> startup nomount
ORACLE 인스턴스가 시작되었습니다.

Total System Global Area  135338868 bytes
Fixed Size                   453492 bytes
Variable Size             109051904 bytes
Database Buffers           25165824 bytes
Redo Buffers                 667648 bytes


....

..

.

alter database mount;  -  

alter database open;

728x90