I stumbled on this nice post from Alexandru Toth entitled: QlikView Memory Limits Alexandru shares his experience on limits relating to QlikView memory and he gives us a nice script for killing via Powershell processes that seem to consume too much memory powershell -command “& {get-process qv | Where-Object {$_.PeakVirtualMemorySize64 -gt 50000000000 } | Stop-Process [...]
