^ that is not entirely true. You can manage without a pagefile just fine even on 2 gb ram on vista.
I have been running my rig with no pagefile since when I installed vista. You however need to do some aggressive service management bcoz some services inadvertantly still cause memory leaks (I am on vista SP1 32 bit and i patch up the os every few weeks).
I used to get memory leak problems but I narrowed it down to one service: the iphelper service which is used for ipv6 iirc. Though I had disabled ipv6 since my network doesn't support it, the service used to run insidiously through svchost until it slowly overtime hogged all my memory and my computer crashed after a few hours (it would typically take from 1 hour to even 6 hours to crash depending on system load)
I isolated it first by checking the pid of the problematic svchost process and then systematically isolating the services which were running under that pid (check task manager) using the following regtweak:
Code:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\[I]Name of service[/I]]
"Type"=dword:00000010
This makes the service run under its own process. So if it was hogging my memory, i could pinpoint it.
Else I would reverse it using:
Code:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\[I]Name of service[/I]]
"Type"=dword:00000020
This took me a couple of hours when i first did it but it was worth the trouble.
I run without a pagefile 24x7 ever since (almost an year) without any problems whatsoever.
Personally I am against paging. It fragments your system partition and modern systems can do without it.
You may have a different configuration, but a similar problem. Try pinpointing the cause of your problem instead of just spending more on RAM or resorting to paging.