How to check that the three methods that can be used to determine wheather your database is up and running at OS level.

Showing Answers 1 - 2 of 2 Answers

Reshma

At OS level you can check for Oracle background process (SMON, PMON) are running or not using the Unix command (ps -ef)

Eg:
1) ps -ef |grep smon
2) ps -ef |grep pmon

You can check for your listener also like this

ps -ef |grep -i listener

  Was this answer useful?  Yes

Punithavel

  • Mar 3rd, 2009
 

1. Checking from O/S level

ps -ef | grep pmon

2. Checking through connectivity

sqlplus apps/apps

3. Checking the listener. (Listener can run even without DB startup) but without listener we cant connect to DB from outside of server.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions