mgroenewald
Posts: 197
Score: -2 Joined: 7/2/2004 Status: offline
|
Hope this helps a bit this will show unique records for all versions of xp SELECT V_GS_System.Name0 AS 'Computer Name', v_GS_COMPUTER_SYSTEM.Username0 as 'User Name', v_GS_Operating_System.Name0 as 'Operating System', max(V_GS_X86_PC_MEMORY.TotalPhysicalMemory0) as 'Total Memory', max(v_GS_Disk.Size0) as 'Hardrive Size', max(v_GS_Logical_Disk.FreeSpace0) AS 'Free Space', max(v_GS_Processor.CurrentClockSpeed0) as 'CPU Speed' From v_GS_SYSTEM, v_GS_COMPUTER_SYSTEM, v_GS_Operating_System, V_GS_X86_PC_MEMORY, v_GS_Disk, v_GS_Logical_Disk, v_GS_Processor Where v_GS_SYSTEM.ResourceID=v_GS_COMPUTER_SYSTEM.ResourceID and v_GS_SYSTEM.ResourceID=V_GS_X86_PC_MEMORY.ResourceID and v_GS_SYSTEM.ResourceID=v_GS_Operating_System.ResourceID and v_GS_SYSTEM.ResourceID=v_GS_Disk.ResourceID and v_GS_SYSTEM.ResourceID=v_GS_Processor.ResourceID and v_GS_SYSTEM.ResourceID=v_GS_Logical_Disk.ResourceID group by V_GS_System.Name0, v_GS_COMPUTER_SYSTEM.Username0, v_GS_Operating_System.Name0
|