1. 오라클 다운로드
http://www.oracle.com/kr/index.html → 다운로드 → Oracle Database 11g 다운로드
2. 설치
A. 서버 클래스 선택
3. 환경변수 등록
A. 시작 → 실행 → sysdm.cpl
B. 고급 → 환경변수 → 시스템변수 → path [편집]
C. ;C:\app\사용자 계정\product\11.2.0\dbhome_1\BIN\
4. 실행
A. 일반사용자로 접속
C:\>sqlplus hr/hr
B. the account unlock인 경우
C:\>sqlplus / as sysdba
SQL>alter user hr account unlock;
C. 계정로그인 확인
SQL>show user
D. invalid username .....인 경우
C:\>sqlplus / as sysdba
SQL>alter user hr identified by hr;
'데이터베이스' 카테고리의 다른 글
[oracle] 오라클 11g 삭제 (0) | 2013.04.03 |
---|---|
[oracle] service name 확인 (0) | 2013.04.03 |
[oracle] 문자열 및 날짜, 비교 조건 (0) | 2013.04.03 |
[oracle] 연결 연산자, 리터럴 문자열, 중복 행 제거 (0) | 2013.04.03 |
[oracle] sqlplus 화면크기 조절 (pagesize, linesize) (0) | 2013.04.03 |