Something is still going on. To monitor and log memory utilization you can create an "instant on" job like the following Dim Bytes, number Dim MBytes, number Dim FileNo // loop forever LoopWhile TRUE, END_LOOP MemoryGetFree Bytes // convert to Mbytes Divide Bytes, 1048576, MBytes // open log file FileOpen( "c:\\memory.log", "LineMode", "Write", True, FileNo ) // write to file FileWrite FileNo, MBytes // close file FileClose(FileNo) // wait 3 seconds Wait 3 END_LOOP: : There are no 24x7 jobs running on that system at this time. Also, there are : 26gb of free space ont he drive with the swap file, so I doubt that is the : problem.
|