Found a new file in D3 that you need to keep an eye on: DM,ERRORS,END. This file gets an entry every time you END a phantom job from TCL. A friend of mine had a VME crash because there were over a million items in that file. If you END a lot of phantoms from TCL, you're probably headed in the same direction. Best solution is to turn off the logging to do that, you'll need to set up a config item in the DICT of the DM,ERRORS, file and fix a bug in one of our subroutines. The bug has been reported and will be fixed in a later release of D3.
First the subroutine: DM,BP, END.SUB:
You need to flip lines 63 and 64:
063 end
064 if logit = 0 then outNoLog = 1
should be:
063 if logit = 0 then outNoLog = 1
064 end
Then COMPILE DM,BP, END.SUB (O
Then create this item in the DICT DM,ERRORS, file:
config.end
001
002
003 logging=off
This will turn off logging. You can now do a CLEAR-FILE DM,ERRORS,END and get on with your life.
------------------------------
Brian S. Cram
Principal Technical Support Engineer
Rocket Software
------------------------------



