LoginSignup
1
0

More than 5 years have passed since last update.

[MSSQL]一定時間任意のテーブルをロックする

Last updated at Posted at 2018-01-31

はじめに

通常処理中に明示的にテーブルロックする事はあまりないですが、エラー処理の確認を行う時などに重宝します。

tablelock.sql
BEGIN TRAN
SELECT * FROM テーブル名 WITH(TABLOCKX) WAITFOR DELAY '00:01:00' --任意の待機時間
COMMIT TRAN
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0