RE: Listener Hangs

2003-03-04 Thread Govind.Arumugam
This is how you can cleanup listener.log w/o taking the listener down. You can copy the listener.log to an archive location, then do the following: cat "/dev/null" and redirect to listener.log file. This will zero the current file and allow other updates to the log from the listener to

Re: Listener Hangs

2003-03-04 Thread Chuck Hamilton
It's possible. I've heard of this happening before and the recommendation was to clear out the listener.log file. There are a couple of ways to clear out that file. One is to stop the listener and delete it. The other is to cat /dev/null to it (i.e. cat /dev/null listener.log). The latter

RE: Listener Hangs

2003-03-04 Thread Sam Bootsma
: Listener Hangs This is how you can cleanup listener.log w/o taking the listener down. You can copy the listener.log to an archive location, then do the following: cat /dev/null and redirect to listener.log file. This will zero the current file and allow other updates