October 29, 2015 at 11:32 am
SELECT [total_physical_memory_kb] / 1024 AS [Total_Physical_Memory_In_MB]
CPU_Count AS NumberofCPU FROM [master].[sys].[dm_os_sys_memory]
select * from sys.dm_os_sys_info
Here i want to join the second query to fisrt and need out put of Total_Physical Memory and Cpu_count information
October 29, 2015 at 11:46 am
Very simple:
SELECT [total_physical_memory_kb] / 1024 AS [Total_Physical_Memory_In_MB],
CPU_Count AS NumberofCPU
FROM [master].[sys].[dm_os_sys_memory]
CROSS JOIN sys.dm_os_sys_info
October 29, 2015 at 11:48 am
Thank you verymuch
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply