Before investing in server hardware, most companies spend a good deal of time researching the resources required to run the applications that the server will be hosting. But all this hard work can be undone by a poorly written application.
Over time, some applications can rob your server of resources far beyond any reasonable estimates. Applications with memory leaks or applications that consume excessive amounts of processor time can not only kill server performance, but can also render that server unstable.
Memory issues with applications
Applications usually request memory from the OS in order to perform various functions. Under normal circumstances, an application will release memory once it has finished using it. A leaky application will request memory like any other application, but will not release the memory that is no longer needed.
The next time that the application runs the function that required the additional memory, the application will not use the memory that it is already consuming. In fact, it will request even more memory from the OS. The leaky app continues to hold onto this memory even after it is no longer needed. Over time the leaky app wil
To continue reading for free, register below or login
To read more you must become a member of SearchEnterpriseDesktop.com
');
// -->

l drain the OS of more and more memory.
Memory leaks are not always obvious. There is no dialog box in Microsoft Windows that says, "You have a memory leak." It's up to you to find memory leaks, and corrrect them. But how do you know if you've got one?
Symptoms of memory leaks
The symptoms of a memory leak vary. They depend on the amount of memory the leaky app consumes each time the leaky code is executed, as well as how often the leaky code is executed. The frequency with which the system is rebooted also makes a difference, since memory is restored to the OS during a reboot.
Some memory leaks are barely noticeable. But if one becomes significant enough to start affecting the OS, you'll see some telltale signs. Including:
[IMAGE]
[IMAGE]
[IMAGE]How to detect a memory leak in Microsoft Windows
[IMAGE]
[IMAGE] Introduction
[IMAGE] Memory leaks: Finding a memory leak in Microsoft Windows
[IMAGE] Finding memory leaks using Performance Monitor
[IMAGE] Memory leaks: Determine an applications CPU consumption