ブロックされたプロセスのしきい値を増やすまたは無効にする

適用対象:SQL Server

このルールでは、blocked process threshold オプションが 0 (無効) に設定されているか、5 (秒) 以上の値に設定されていることを確認します。 blocked process threshold オプションを 1 ~ 4 の値に設定すると、デッドロック モニターが絶えず実行される可能性があります。 1 から 4 の値はトラブルシューティングでのみ使用してください。長期間または運用環境での使用には、Microsoft カスタマー サービス & サポートの支援が必須です。

ベスト プラクティスの推奨事項

この問題を解決するには、blocked process threshold オプションを 5 (秒) 以上の値に設定するか、値を 0 に設定して blocked process threshold を無効にします。 blocked process threshold を 5 秒に設定するには、次のステートメントを実行します。

sp_configure 'show advanced options', 1 ;
GO
RECONFIGURE ;
GO
sp_configure 'blocked process threshold', 5 ;
GO
RECONFIGURE ;
GO

詳細情報

blocked process threshold サーバー構成オプション