我試圖選擇一個臨時表cntr_value
兩個不同的計數器名稱instance_name
的_Total
。我只是無法解決如何做到這一點。如何選擇一個計數值到臨時表
INSERT INTO @RESULTS
(AsOfDate, unsent_log, unrestored_log, instance_name)
select @Now, cntr_value, cntr_value, instance_name
from master.sys.dm_os_performance_counters
where counter_name ='Log Send Queue KB'
--and counter_name = 'Redo Queue KB'
and instance_name = '_Total'
Select * from @results
我的表看起來像這樣:
AsOfDate unsent_log unrestored_log instance_name
2014-10-30 11:22:25.290 0 0 _Total
完美謝謝你 – user2841861 2014-10-30 13:35:41