私は、「パブリッシャー」アプリケーションが、非常に複雑なビューを照会し、個別の挿入、更新、および削除操作を使用して、結果を非正規化されたビュー モデル テーブルにマージすることにより、基本的にビュー モデルを最新の状態に保つ状況を持っています。
SQL 2008 にアップグレードしたので、これらを SQL MERGE ステートメントで更新する絶好の機会だと思いました。ただし、クエリを記述した後、MERGE ステートメントのサブツリー コストは 1214.54 です。従来の方法では、挿入/更新/削除の合計はわずか 0.104 でした。
同じ正確な操作を説明するより簡単な方法が、どうしてこれほどくだらないものになるのか、私にはわかりません。おそらく、私ができない私のやり方の誤りを見ることができるでしょう。
テーブルに関するいくつかの統計: 190 万行あり、MERGE 操作ごとに 100 以上の行が挿入、更新、または削除されます。私のテスト ケースでは、影響を受けるのは 1 つだけです。
-- This table variable has the EXACT same structure as the published table
-- Yes, I've tried a temp table instead of a table variable, and it makes no difference
declare @tSource table
(
Key1 uniqueidentifier NOT NULL,
Key2 int NOT NULL,
Data1 datetime NOT NULL,
Data2 datetime,
Data3 varchar(255) NOT NULL,
PRIMARY KEY
(
Key1,
Key2
)
)
-- Fill the temp table with the desired current state of the view model, for
-- only those rows affected by @Key1. I'm not really concerned about the
-- performance of this. The result of this; it's already good. This results
-- in very few rows in the table var, in fact, only 1 in my test case
insert into @tSource
select *
from vw_Source_View with (nolock)
where Key1 = @Key1
-- Now it's time to merge @tSource into TargetTable
;MERGE TargetTable as T
USING tSource S
on S.Key1 = T.Key1 and S.Key2 = T.Key2
-- Only update if the Data columns do not match
WHEN MATCHED AND T.Data1 <> S.Data1 OR T.Data2 <> S.Data2 OR T.Data3 <> S.Data3 THEN
UPDATE SET
T.Data1 = S.Data1,
T.Data2 = S.Data2,
T.Data3 = S.Data3
-- Insert when missing in the target
WHEN NOT MATCHED BY TARGET THEN
INSERT (Key1, Key2, Data1, Data2, Data3)
VALUES (Key1, Key2, Data1, Data2, Data3)
-- Delete when missing in the source, being careful not to delete the REST
-- of the table by applying the T.Key1 = @id condition
WHEN NOT MATCHED BY SOURCE AND T.Key1 = @id THEN
DELETE
;
では、これはどのようにして 1200 のサブツリー コストになるのでしょうか? テーブル自体からのデータ アクセスは非常に効率的です。実際、MERGE のコストの 87% は、チェーンの終わり近くにあるソート操作からのもののようです。
MERGE (0%) <- インデックスの更新 (12%) <- 並べ替え (87%) <- (...)
そして、そのソートには、それに出入りする0行があります。0 行をソートするのに 87% のリソースが必要なのはなぜですか?
アップデート
MERGE 操作のみの実際の (推定ではない)実行計画をGist に投稿しました。