일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 개발
- 프로그래머스
- 티스토리챌린지
- 둔산동맛집
- error
- React
- CodingTest
- 코딩테스트
- EC2
- programmers
- 코테
- 자바
- vscode
- 티스토리
- 알고리즘
- 개발공부
- Git
- 코딩
- SpringBoot
- ubuntu
- 오블완
- 우분투
- 리눅스
- 스프링부트
- AWS
- Java
- Tistory
- 개발자
- TypeScript
- Linux
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 개발
- 프로그래머스
- 티스토리챌린지
- 둔산동맛집
- error
- React
- CodingTest
- 코딩테스트
- EC2
- programmers
- 코테
- 자바
- vscode
- 티스토리
- 알고리즘
- 개발공부
- Git
- 코딩
- SpringBoot
- ubuntu
- 오블완
- 우분투
- 리눅스
- 스프링부트
- AWS
- Java
- Tistory
- 개발자
- TypeScript
- Linux
- Today
- Total
개발자가 된 감자
[Oracle] 윈도우 11 오라클 설치하기 본문
1. 오라클 홈페이지에서 Windows x64 선택 후 다운로드
https://www.oracle.com/database/technologies/xe-downloads.html
Oracle Database Express Edition (XE) Downloads
Support Oracle Database Express Edition (XE) is a community supported edition of the Oracle Database family. Please go to the Oracle Database XE Community Support Forum for help, feedback, and enhancement requests. Note: Oracle Support Services only provid
www.oracle.com
2. 압축 풀고 setup 파일 실행하기
비밀번호 설정 시 까먹지 않도록 따로 기재해주자.
3. SQL Plus 실행 시켜 설치 여부 확인
사용자명 입력 : system
비밀번호 입력 : setup 파일 실행 후 지정했던 비밀번호 입력
4. 사용자 추가 및 권한 부여하기
create user c##사용자명 identified by [위에서 사용한 비밀번호];
grant connect, resource, dba to c##사용자명;
5. GUI 설치하기 (JDK가 이미 설치되어 있을 경우, JDK 미포함 파일로 다운로드)
압축 풀고 sqldeveloper 실행하기
https://www.oracle.com/database/sqldeveloper/technologies/download/
Oracle SQL Developer Downloads
This archive. will work on a 32 or 64 bit Windows OS. The bit level of the JDK you install will determine if it runs as a 32 or 64 bit application. This download does not include the required Oracle Java JDK. You will need to install it if it's not already
www.oracle.com
6. 위에서 생성한 사용자로 db 접속하기
정상적으로 접속됨을 확인할 수 있다.