오라클 재시작 및 리스너 (명령 모드)
#su - oracle
/************* 오라클 SQLPlUS 접속하기 방법 1 ***************/
[oracle:/경로명/oracle]% sqlplus "/as sysdba"
SQL*Plus: Release 9.2.0.1.0 - Production on Wed Dec 7 14:05:51 2005
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected to:
Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
SQL>startup <--- 오라클DB 시작명령
SQL>shutdown abort <--- 오라클DB 종료명령
SQL>exit <--- 오라클 SQLPLUS 빠져나오기
/************* 오라클 SQLPlUS 접속하기 방법 2 ***************/
[oracle:/경로명/oracle]% sqlplus /nolog
SQL*Plus: Release 9.2.0.1.0 - Production on Wed Dec 7 14:17:35 2005
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
SQL>conn /as sysdba
SQL>startup <--- 오라클DB 시작명령
SQL>shutdown abort <--- 오라클DB 종료명령
SQL>exit <--- 오라클 SQLPLUS 빠져나오기
/**********************************************************/
/************ 오라클 리스너 접속하기 ***********************/
[oracle:/경로명/oracle]% lsnrctl
LSNRCTL for Solaris: Version 9.2.0.1.0 - Production on 07-DEC-2005 14:10:01
Copyright (c) 1991, 2002, Oracle Corporation. All rights reserved.
Welcome to LSNRCTL, type "help" for information.
LSNRCTL>start <--- 리스너 시작하기
LSNRCTL>stop <--- 리스너 종료하기
LSNRCTL>exit <--- 리스너 빠져나오기
/*********************************************************/
'DataBase > Oracle' 카테고리의 다른 글
ORA-00942: 테이블 또는 뷰가 존재하지 않습니다. (0) | 2009.12.04 |
---|---|
sqldeveloper 실행시 Unable to create an instance of the Java Virtual Machine Located at path ....jvm.dll (11) | 2009.02.12 |
오라클 덤프뜨기 (DMP 파일) (0) | 2009.02.03 |
ORA-00054: 자원이 사용중이고, NOWAIT가 지정되어 있습니다.(테이블 LOCK 걸렸을때) 조치방법 (0) | 2008.11.25 |
오라클 중복데이터 삭제하기 (0) | 2008.10.02 |