컴퓨터/Oracle

오라클01 - 시작,종료

하늘치 2008. 3. 16. 21:18
반응형

1. 시작, 종료 (자세한 설명은 차후에;)

- C:\Documents and Settings\admin>sqlplus

- 사용자명 입력: sys/change_on_install as sysdba

- SQL> startup force
- startup nomount;
- alter database mount;
- alter database open;

- SQL> shutdown normal
- shutdown normal
- shutdown transactional
- shutdown immediate
- shutdown abort

C:\Documents and Settings\admin>sqlplus

SQL*Plus: Release 9.0.1.0.1 - Production on 일 Mar 16 21:05:37 2008

(c) Copyright 2001 Oracle Corporation.  All rights reserved.

사용자명 입력: sys/change_on_install as sysdba

Connected to:
Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production
With the Partitioning option
JServer Release 9.0.1.1.1 - Production

SQL>
SQL> startup force
ORACLE 인스턴스가 시작되었습니다.

Total System Global Area  118255568 bytes
Fixed Size                   282576 bytes
Variable Size              83886080 bytes
Database Buffers           33554432 bytes
Redo Buffers                 532480 bytes
데이터베이스가 마운트되었습니다.
데이터베이스가 열렸습니다.
SQL>
SQL>
SQL> shutdown normal
데이터베이스가 닫혔습니다.
데이터베이스가 마운트 해제되었습니다.
ORACLE 인스턴스가 종료되었습니다.
SQL>
SQL> Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production
With the Partitioning option
JServer Release 9.0.1.1.1 - Production에서 분리되었습니다.

C:\Documents and Settings\admin>




2. 오라클 데이터베이스 접속하기.

- 아파치 웹서버 시작. (서비스 탭에서 확인가능)

- iSQL*PLUS 사용방법
'-> 먼저 startup force 로 데이터베이스를 열어준다.
-> http://localhost이름/isqlplus
-> 처음에는 사용자 이름에 'SCOTT', 암호에는 'TIGER'라고 입력한다. 기본적으로 등록되어 있다는 점에서 administrator와 비슷한 듯..

반응형