oracle

    [Oracle] 사용자 계정 생성하기

    주석 -- 한 줄 짜리 주석 /* 여러줄 주석 */ 일반 사용자 계정 생성하는 구문 (오로지 관리자 계정에서만 할 수 있음) [표현법] CREATE USER 계정명 IDENTIFIED BY 비밀번호; CREATE USER kh IDENTIFIED BY kh; -- 계정명은 대소문자 안가림 -- 위 코드를 쓰고 ctrl + enter 해보자 이제 계정을 추가해보자 테스트를 눌러보면 왼쪽하단에 오류 메시기가 출력 된다. 그 이유는 사용자에게 권한을 주지 않았기 때문이다. 사용자에게 권한을 줘보자 위에서 생성된 일반 사용자 계정에게 최소한의 권한 (데이터 관리, 접속) 부여 [표현법] GRANT 권한1, 권한2, .. TO 계정명 CREATE USER kh IDENTIFIED BY kh; GRANT RESOU..

    [Oracle] Oracle SQL Developer 설치하기

    1. Oracle SQL Developer 다운로드 https://www.oracle.com/tools/downloads/sqldev-v191-downloads.html SQL Developer Downloads 19.1 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 자신..

    [Oracle] Oracle(오라클) 설치하기

    1. Oracle 다운로드 https://www.oracle.com/database/technologies/xe-prior-release-downloads.html XE Prior Release Archive Getting Started: 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 Ser www.oracle.com 자신의 운영체제에..

    [JAVA] 이클립스(Eclipse) 설치하기

    자바로 프로그래밍 하기 위한 이클립스 설치 방법 1. JDK 다운로드 받기 1-1.오라클 홈페이지에 접속하여 JDK를 다운받는다. https://www.oracle.com/kr/java/technologies/downloads/ Download the Latest Java LTS Free Subscribe to Java SE and get the most comprehensive Java support available, with 24/7 global access to the experts. www.oracle.com 1-2 자신의 운영체제에 맞게 선택하여 다운로드 받는다. JAVA archive 를 클릭하여 다른 버전을 설치할 수 있다. 다양한 버전을 다운받을 수 있다. 1-3. 다운로드 받은 설치 파..