Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Show content differences between two tables/views

    You could try,

    select *

    into D

    from A

    where not exists (select 'x' from C where C.key=A.key)

    union

    select *

    into D

    from B

    where not exists (select 'x' from C where C.key=B.key)

  • RE: SQL performance counts missing

    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...

Viewing 2 posts - 1 through 2 (of 2 total)