pazdak
Posts: 35
Score: 0 Joined: 6/20/2007 Status: offline
|
I have SCCM 2007 RTM with SQL 2005 sp2 By some machines it was added RAM. There was a necessity to give the report, where and as changed RAM on clients. I found following scripts from smsug.caquote:
select CS.Name0, CS.UserName0, RAM.TotalPhysicalMemory0, RAM.TimeStamp, HRAM.TotalPhysicalMemory0, Max(HRAM.TimeStamp) from dbo.v_GS_COMPUTER_SYSTEM CS, dbo.v_GS_X86_PC_MEMORY RAM, dbo.v_HS_X86_PC_MEMORY HRAM Where CS.ResourceID = RAM.ResourceID and CS.ResourceID = HRAM.ResourceID and RAM.TotalPhysicalMemory0 != HRAM.TotalPhysicalMemory0 Group by CS.Name0, CS.UserName0, RAM.TotalPhysicalMemory0, RAM.TimeStamp, HRAM.TotalPhysicalMemory0 But as it has appeared histories on RAM is not present. Why?I check v_HS_X86_PC_MEMORY and PC_MEMORY_HIST - and they emptyData in v_GS_X86_PC_MEMORY and PC_MEMORY_DATA - actual Why the history does not save?
|