오라클 시작하기 & 종료하기
Oracle/Administration / 2010. 2. 8. 19:21
- 시작하기 (실습환경 만들기)
$ sqlplus /nolog
SQL> conn / as sysdba;
SQL> startup;
SQL> alter user scott identified by tiger account unlock;
SQL> conn scott/tiger;
SQL> @/home/oracle/exam.sql
- 종료하기
SQL> conn / as sysdba;
SQL> shutdown immediate;
SQL> exit
'Oracle > Administration' 카테고리의 다른 글
Admin - Redo Log (0) | 2010.02.24 |
---|---|
Admin - Parameter File & Control File (0) | 2010.02.22 |
Admin - Server Process, Backgroun Process (0) | 2010.02.22 |
Admin - 오라클의 구조 (0) | 2010.02.19 |
사용자 권한 제어 (0) | 2010.02.19 |