在更新 table 时它正在冻结应用程序
While updating the table it is freezing the application
我有一个每小时运行一次的更新查询。当它运行时,它会冻结系统,没有人可以工作。如何解决这个问题
我的查询是:
update SL
set TrsID=U.TrsID
from ST (nolock) as T
join SL as P on T.TrsID=P.TrsID
join ST (nolock) as U on U.TrsUnionID=T.TrsUnionID
and U.LotID=T.LotID and U.TrsID<>T.TrsID
where T.TrsID>195171640
and U.TrsTypeDesc2=' (PENDING)'
我用了 (nolock) 还是死机了。做什么
我有一个每小时运行一次的更新查询。当它运行时,它会冻结系统,没有人可以工作。如何解决这个问题
我的查询是:
update SL
set TrsID=U.TrsID
from ST (nolock) as T
join SL as P on T.TrsID=P.TrsID
join ST (nolock) as U on U.TrsUnionID=T.TrsUnionID
and U.LotID=T.LotID and U.TrsID<>T.TrsID
where T.TrsID>195171640
and U.TrsTypeDesc2=' (PENDING)'
我用了 (nolock) 还是死机了。做什么