Two days back I had encountered MSSQL Error: 701 There is insufficient system memory, I've never come across this problem before in SQL Server 2008 R2, but long back I had faced similar kind of problem for SQL Server 2005, after installing hotfix it got resolved. I am not exactly sure is there any hotfix is available for SQL Server 2008 R2 or not?
To resolve 701 issue on SQL Server 2008 R2 I have followed below steps and it worked for me:
1. Increase SQL Server Maximum Memory through SQL Server Properties.
To resolve 701 issue on SQL Server 2008 R2 I have followed below steps and it worked for me:
1. Increase SQL Server Maximum Memory through SQL Server Properties.
2. It is actually a bug in the SQL Server. It is not releasing the memory which it holds when it is necessary.
DBCC FreeProcCache -- Clear entire proc cache
DBCC DropCleanBuffers -- Clear entire data cache
DBCC DROPCLEANBUFFERS
DBCC FREESESSIONCACHE
3. If above steps not resolved, check min memory per query, Default value is 1024 KB, it is not recommended to decrease the value but still you can try.
DBCC DropCleanBuffers -- Clear entire data cache
DBCC DROPCLEANBUFFERS
DBCC FREESESSIONCACHE
3. If above steps not resolved, check min memory per query, Default value is 1024 KB, it is not recommended to decrease the value but still you can try.
Resolving 701 There is insufficient system memory to run this query. SQL Server reports 701: "There is insufficient memory to run this. Memory Manager Errors. There is insufficient system memory to run this query. Error 701. MSSQLSERVER 701. SQL Server 2005 Error: 701. Severity: 17. State: 193. Memory problem. insufficient system memory. Memory Manager Errors. There is insufficient system memory in resource pool 'internal' to run. SQLServer Error: 802. 701. 733. SQL Error 701 Insufficient Memory. Slow performance and out of memory issues. in sql server 2008. in sql server 2012. in sql server 2000. in sql server 2005.





