150 likes | 561 Views
Oracle 설치. Jaeyong Choi cjy@kangwon.ac.kr. Oracle 설치. 오라클 홈페이지 (www.oracle.com) 에서 다운로드 강의 자료 홈페이지에서 다운로드 http://cs.kangwon.ac.kr/~ jhkim/Lecture/courses.html. Oracle 설치. Oracle 설치. Oracle 설치. Oracle 설치. 비밀번호 “oracle” 입력 !!. Oracle 설치. SQL Developer 설치.
E N D
Oracle 설치 Jaeyong Choi cjy@kangwon.ac.kr
Oracle 설치 • 오라클 홈페이지(www.oracle.com)에서 다운로드 • 강의 자료 홈페이지에서 다운로드 • http://cs.kangwon.ac.kr/~jhkim/Lecture/courses.html
Oracle 설치 • 비밀번호 “oracle” 입력 !!
SQL Developer설치 • 오라클 홈페이지(www.oracle.com)에서 다운로드 • 강의 자료 홈페이지에서 다운로드 • http://cs.kangwon.ac.kr/~jhkim/Lecture/courses.html
Oracle 접속하기 • 사용자 이름 : system • 비밀번호 : oracle
SQL Query 실행하기 • 다음 명령어를 입력 창에 모두 입력한 후 F5키를 눌러 실행 • create table test(name varchar(20), age integer); • insert into test values(‘kim’, 22); • insert into test values(‘park’, 24); • insert into test values(‘choi’, 21); • select * from test;