Viewing 2 posts - 1 through 2 (of 2 total)
You could try,
select *
into D
from A
where not exists (select 'x' from C where C.key=A.key)
union
from B
where not exists (select 'x' from C where C.key=B.key)
October 16, 2008 at 2:42 am
#885684
I Also had this problem of not seeing (missing) any MS SQL counters in the perfmon tool,
I followed many recommendations and at last this one
and that did the trick.
Thanks...
July 18, 2008 at 6:09 am
#844959