NCS/SQL 활용
oracle 18c installation sample schema
장성한군사
2019. 4. 24. 10:36
================================================================
oracle 18c installation sample schema
================================================================
오라클 설치를 하였으니 테스트용으로 HR 샘플 스키마를 설치한다.
1. sysdba로 접속하자.
$ sqlplus sys / as sysdba
2.세션에서 script를 실행할 수 있도록 하자.
SQL> alter session set "_ORACLE_SCRIPT"=true;
3. hr스키마 sql을 실행한다.
SQL> @?/demo/schema/human_resources/hr_main.sql
specify password for HR as parameter 1:
Enter value for 1: hr
specify default tablespace for HR as parameter 2:
Enter value for 2: users
specify temporary tablespace for HR as parameter 3:
Enter value for 3: temp
specify log path as parameter 4:
Enter value for 4: $ORACLE_HOME/demo/schema/log/
----중간 생략----
PL/SQL procedure successfully completed.