윈도우에서 오라클 경로 찾기

Oracle/OracleDB_SQL 2016. 5. 12. 16:01

윈도우에서 오라클 경로찾기

 

cmd -> regedit

 

regedit창에서

HKEY_LOCAL_MACHINE

- SOFTWARE

- Wow6432Node

- Oracle

- KEY_Oradb11g_hom1

  * ORACLE_HOME

  * ORACLE_SID

  * ORACLE_BASE

 

컴퓨터 관리-서비스 및 응용프로그램 - 서비스에서 OracleServicePROD 시작됨 (자동) 상태....

정상조건 :

다음에 접속됨 :
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitionin, OLAP, Data Mining and Real Application Testing options

SQL>

유저확인 할 때

SQL> show user

USERS은 "SYS"입니다.

cl scr -> 화면 클리어

exit

OracleSercvicePROD를 중지시키고 해보면 다음과 같이 접속실패 로그가 뜬다.

 

Oracle Service 중지되었을 경우 뜨는 오류

C:\Users\Administrator>sqlplus "/as sysdba"

SQL*Plus:Release 11.2.0.1.0 Production on 수 5월 11 21:30:48 2016

Copyright(c) 1982,2010,Oracle.  All rights reserved.

ERROR:

ORA-12560: TNS:프로토콜 어댑터 오류

사용자명 입력:

SQL>shutdown immediate

데이터베이스가 닫혔습니다.

데이터베이스가 마운트 해제되었습니다.

ORACLE 인스턴스가 종료되었습니다.

SQL>exit

 

서비스는 올라가 있지만 데이터베이스는 내려간 상태이다.

Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options에서

분리되었습니다.

C:\Users\Administrator>sqlplus "/as sysdba"

SQL*Plus:Release 11.2.0.1.0 Production on 수 5월 11 21:36:50 2016

Copyright (c) 1982, 2010, Oracle. All rights reserved.

 

휴지 인스턴스에 접속되었습니다.

SQL>

SQL>startup

ORACLE 인스턴스가 시작되었습니다.

Total system Global Area 1071333376 bytes

Fixed Size                        1375792 bytes

Variable Size                    545259984 bytes

Database Buffers                520093696 bytes

Redo Buffers                        4603904 bytes

데이터베이스가 마운트되었습니다.

데이터베이스가 열렸습니다.

SQl>

작업관리 프로세스 oracle.exe(*32)로 확인가능

SQL> select usname

2 from dba_users;

USERNAME

---------------------------------------

 

MGMT_VIEW

SYS
SYSTEM   

DBSNMP

SYSMAN

OUTLN

FLOWS_FILES

MDSYS

ORDSYS

EXFSYS

WMSYS

APPQOSSYS

APEX_030200

OWBSYS_AUDIT

ORDDATA

CTXSYS

ANONYMOUS

XDB

ORDPLUGINS

OWBSYS

SI_INFORMTN_SCHMA

OLAPSYS

USERNAME

----------------------------------------

 

'Oracle > OracleDB_SQL' 카테고리의 다른 글

단일 행 함수  (0) 2016.05.21
데이터 제한 및 정렬  (0) 2016.05.21
[조건식,그룹 함수]  (0) 2016.05.18
변환 함수 및 조건부 표현식  (0) 2016.05.18
SQL 함수  (0) 2016.05.16
admin