Select
@@Version
go
select
(physical_memory_in_use_kb/1024)Memory_usedby_Sqlserver_MB,
(locked_page_allocations_kb/1024 )Locked_pages_used_Sqlserver_MB,
(total_virtual_address_space_kb/1024 )Total_VAS_in_MB
from
sys. dm_os_process_memory
GO
(total_physical_memory_kb/1024)
as
Toal_RAM_MB
sys.dm_os_sys_memory
*
sys.dm_os_performance_counters
where
counter_name=
'Target Pages'
and
object_name=
'SQLServer:Buffer Manager'
counter_name
in
(
'Target Server Memory (KB)'
,
'Total Server Memory (KB)'
)
or
(object_name=
'Buffer cache hit ratio'
'Page life expectancy '
))
Very informative comparison between two versions!
Thanks Shanky for sharing!
Thanks Saeid, If you can see the issue do vote for Connect link I want MS to work on this as this is really creating confusion . Target memory is something people often refer to for memory pressure. Connect item aims at making things clear
Congratulations shanky for winning GOLD medal.
Congratulations on the guru award.
Great article.