To continue reading for free, register below or login
To read more you must become a member of SearchOracle.com
');
// -->

In Unix/Linux servers, I do the following:
cp listener.log listener_copy.log
cp /dev/null listener.log
The above makes a copy of the listener log and then overwrites the log with an empty file, thus zeroing out the log's contents. If you do not need the old copy, you can remove it, or skip the first copy command above.
|