SQL, DBeaver 환경세팅

9mond·2023년 7월 18일
0
post-thumbnail
post-custom-banner

SQL 환경세팅

https://www.oracle.com/database/technologies/xe-prior-release-downloads.html

  1. 첫 번째꺼 로그인 후 다운로드
  2. dist1 폴더에 setup.exe실행
  3. next로 쭉 진행 후 비밀번호 입력
  4. cmd -> sqlplus 명령어 입력
  5. Enter user-name 나오면 설치 완료
  6. user-name : system -> db에 접근
    pw:
  7. alter user hr identified by hr account unlock;
    -> User altered. -> exit으로 탈출
  8. sqlplus
  9. user-name : system
    pw:
  10. alter user hr identified by 1234;
  11. grant connect, resource to hr; -> Grant succeeded.
  12. exit

———————————————————————————
13. sqlplus

  1. user-name: hr
    pw:
  2. select * from employees;
  3. exit으로 sql 나와주고
    한번 더 exit으로 cmd창 나와주기

DBeaver 환경세팅

https://dbeaver.io/download/

  1. Windows(zip) 다운로드

  2. dbever.exe 설치

  3. next, yes... 해서 설치


  1. 새 데이터베이스 연결 -> 오라클 선택

  2. Database : Xe
    user-name : hr
    pw :

  3. Test connection -> download


  1. schemas -> HR -> Table에서 7개 리스트 확인

  2. 밑에 project-General -> Scripts에 hr 폴더 추가 -> 거기에 day01~ 추가

  3. select data source에서 hr 선택


profile
개발자
post-custom-banner

1개의 댓글

comment-user-thumbnail
2023년 7월 18일

글 잘 봤습니다, 감사합니다.

답글 달기