MeanJoeGreen13
IS-IT--Management
- Jan 6, 2008
- 15
Hi,
Below query failed which executing in sql 2005 64Bit and large memory
select count(*) AS Buffered_Page_Count
,count(*) * 8192 / (1024 * 1024) as Buffer_Pool_MB
from sys.dm_os_buffer_descriptors
Msg 8115, Level 16, State 2, Line 4
Arithmetic overflow error converting expression to data type int.
but it work fine in my test server which running 2GB of ram with sql 2005
Below query failed which executing in sql 2005 64Bit and large memory
select count(*) AS Buffered_Page_Count
,count(*) * 8192 / (1024 * 1024) as Buffer_Pool_MB
from sys.dm_os_buffer_descriptors
Msg 8115, Level 16, State 2, Line 4
Arithmetic overflow error converting expression to data type int.
but it work fine in my test server which running 2GB of ram with sql 2005