[root@hear01 ~]# su - oracle
[oracle@hear01 ~]$ sqlplus "/as sysdba"sql
SQL*Plus: Release 11.2.0.2.0 Production on Tue Feb 21 00:26:35 2012oracle
Copyright (c) 1982, 2010, Oracle. All rights reserved.進程
ERROR:
ORA-01075: you are currently logged onip
[oracle@hear01 ~]$
---------------------
內存
爲了快速登陸oracle,好迅速啓動oracle,這裏提供一種超暴力的方法io
1.使用Linux的kill命令殺死全部與oracle有關的進程
$ ps -ef |grep $ORACLE_SID|grep -v grep|awk '{print $2}' | xargs kill -9awk
2.使用Linux的ipcs和ipcsrm命令釋放oracle佔用的共享內存
$ ipcs -m | grep oracle | awk '{print $2}' | xargs ipcrm shm
登錄