GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Tech FAQs  >  Oracle  >  Database Administration

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




September 09, 2007 22:58:14 #1
 shubhendu_gupta   Member Since: September 2007    Total Comments: 1 

RE: How to check that the three methods that can be us...
 
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

     

 

Back To Question