username : sys as sysdba
password : 설치 시 설정값
scott 계정은 기본학습을 위한 테이블과 데이터가 미리 구현되어 있는 scott 계정을 제공한다. 하지만 내가 설치한 버전에서는 alter user scott 입력시 없는 유저라고 나온 것으로 봐서 학습데이터는 없다고 생각된다.
create user scott
identified by tiger
default tablespace users temporary tablespace temp;
grant create session to scott;
grant all privileges on scott;
conn scott/tiger
스크립트
스크립트를 입력해서 EMP 테이블을 구현한다.