The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 09-09-2007
zazzybob's Avatar
zazzybob zazzybob is offline
Registered Geek
 

Join Date: Dec 2003
Location: Melbourne, Australia
Posts: 2,100
Add something like this to the top of your Oracle start script

Code:
set -x
exec 1>/tmp/stdout.log
exec 2>/tmp/stderr.log
...
Review the logs and see if that highlights anything.

Cheers,
ZB
Reply With Quote