Hi Nicolas,
I am providing the details you had specified for.Please do check and reply.Can you please provide commands to increase the procedure cache size if possible.
Microsoft Windows [Version 6.0.6001]
Copyright (c) 2006 Microsoft Corporation. All rights reserved
1> use master
2> go
1> sp_countmetadata "open indexes"
2> go
There are 231535 user indexes in all database(s), requiring 733972 Kbytes of
memory. The 'open indexes' configuration parameter is currently set to 60000.
(return status = 0)
1> sp_countmetadata "open objects"
2> go
There are 115927 user objects in all database(s), requiring 255506 Kbytes of
memory. The 'open objects' configuration parameter is currently set to 60000.
(return status = 0)
1> sp_countmetadata "open partitions"
2> go
There are 231535 user partitions in all database(s), requiring 316597 Kbytes of
memory. The 'open partitions' configuration parameter is currently set to 50000.
(return status = 0)
1> sp_configure "max memory"
2> go
Parameter Name Default Memory Used
Config Value
Run Value
Unit Type
------------------------------ ----------- -----------
-----------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
------------------------
-----------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
------------------------
-------------------- --------------------
max memory 78848 2560000
1280000
1280000
memory pages(2k) dynamic
(1 row affected)
(return status = 0)
I also tried to increase the procedure cache but i am getting the below error.How should i increase max memory..is it the db size that i have to increase?
1> use master
2> go
1> sp_configure "procedure cache",524288
2> go
Msg 5861, Level 16, State 2:
Server 'MIT', Procedure 'sp_configure', Line 1310:
The current 'max memory' value '1280000', is not sufficient to change the
parameter 'procedure cache size' to '524288'. 'max memory' should be greater
than 'total logical memory' '1457055' required for the configuration.
(1 row affected)
(return status = 1)
Thanks&Regards,
Adarsh