목록개발/Oracle (10)
공부하는가비
-Start up * start up 시작 전 - sysdba 권한 필요 ( conn / as sysdba) -> "sys" - start up [옵션] (단계를 지정하는 단어 nomount, mount, force, ) - 초기화 parameter File (non default parameter) open : Data file, Redo Log file open mount : Control file open (일부 DB 복구 작업) ^alter database open nomount : Instance시작 (control file 문제 해결) ^alter database mount closed * Parameter 1. 보기 -V$parameter 조회 (현재 단계 확인 방법) -show parame..
Oracle DB Server 구조 (인스턴스 + 데이터베이스) *저장구조 (데이터베이스)와 DBMS 운영을 위한 메모리와 프로세스(인스턴스)로구성된다 *서버 종료 후 데이터베이스(저장구조)만 남고 인스턴스(메모리와 프로세스)는 서버 기동시 시작된다 *(instance = SGA + Background Process) 메모리 구조(SGA, PGA) 백그라운드 프로세스 인스턴스는 단 한 개의 데이터베이스와만 연관 *(DB = control file + data file) 물리적 구조와 논리적 구조로 구성된 저장 영역 구조 Memory SGA (system Global Area) 인스턴스가 시작될 때 할당되는 공유 메모리 영역 (서버 프로세스와 백그라운드 프로세스들이 공유하는 공간) PGA (Program ..