|
|
|
|
|
|
|
|
Re: How Can find how much database is running in Oracle server [message #331624 is a reply to message #331583] |
Fri, 04 July 2008 04:30 |
ora110
Messages: 42 Registered: September 2007 Location: China
|
Member |
|
|
You can get oracle instance information by running os command
for example:
linux(unix)
ps -ef | grep ora_
the above command can show the background progress of database server.
------
or you can get the oracle instance information from oracle listener.
run the command "ps -ef | grep tns "
to get the listener name
and then run the following command "lsnrctl service listener_name" to get the oracle instance name which is running under os .
|
|
|
|
|