DBAsupport.com Forums - Powered by vBulletin
Results 1 to 4 of 4

Thread: need help with unix backgroud process

  1. #1
    Join Date
    Mar 2001
    Posts
    78

    Exclamation

    How do I find out the oracle background process in unix. I would like to kill all the oracle back ground processes

  2. #2
    Join Date
    Mar 2001
    Posts
    635
    Hi

    You can fine out the oracle background process by the following command

    ps -ef | grep sid

    replace sid with your oracle instance id

    To kill any process in Unix you have to use the following command

    kill -9 pid

    pid stands for process id you have to specify the pid for the oracle process you want to kill -9 option is used for sure kill

    Regards
    Santosh

  3. #3
    Join Date
    Jun 2000
    Location
    Chennai/India
    Posts
    90
    or use ps -eaf | grep ora
    A Winner never Quits, A Quitter never Wins
    Ganesh .R

  4. #4
    Join Date
    Feb 2001
    Location
    Kolkata- India
    Posts
    356

    Cool

    DO take a backup of the database before killing processes.
    There Nothing You cannot Do, The problem is HOW.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width