Data Systems
Oracle 19c 설치 가이드
Oracle 19c 설치 가이드 학습 내용을 정리한 백필 노트입니다.
이 글은 2025년 학습 기록을 블로그 형식으로 정리한 백필 노트입니다.
1. 다운로드 및 설치 파일 준비
-
Oracle Database 다운로드 페이지:
https://www.oracle.com/kr/database/technologies/
https://www.oracle.com/kr/database/technologies/oracle-database-software-downloads.html#19c
-
설치 파일 압축 해제:
-
반디집 사용
-
바탕화면이나 루트 드라이브에서 압축 해제 금지
-
권장 경로:
C:\Database\WINDOWS.X64_193000_db_home
-
2. 설치 실행
- 압축 해제된 경로에서
setup.exe실행 - 반드시 관리자 권한으로 실행
- 설치 시 컨테이너 데이터베이스 생성 옵션은 체크 해제
3. scott 계정 설정
-
scott.sql 파일 확인 경로
C:\Database\WINDOWS.X64_193000_db_home\rdbms\admin -
CMD 실행 후 SQL*Plus 접속
sqlplus sys/orcl as sysdba SQL> show user SQL> alter session set "_ORACLE_SCRIPT"=true; SQL> @C:\Database\WINDOWS.X64_193000_db_home\rdbms\admin\scott.sql -
scott 계정 비밀번호 설정
SQL> conn sys/orcl as sysdba SQL> alter user scott identified by tiger; -
scott 계정 접속 및 테이블 확인
SQL> conn scott/tiger SQL> select * from dept; SQL> select * from salgrade; SQL> select * from emp; SQL> select * from bonus; SQL> exit
4. SQL Developer 환경 설정
- SQL Developer 실행 후 환경설정
- 메뉴:
도구→환경설정→코드 편집기 - 글꼴 크기, 행 여백, 행 번호 표시 조정
- 메뉴:
요약
이 문서는 Oracle 19c 설치부터 scott 계정 활성화 및 SQL Developer 설정까지의 과정을 설명합니다.
- 설치 파일 다운로드 및 압축 해제
setup.exe관리자 권한 실행- scott.sql 실행 및 계정 활성화 (
tiger비밀번호 설정) - SQL Developer에서 코드 편집 환경 최적화