Locks: Difference between revisions
From Sage CRM Knowledge Base
No edit summary |
No edit summary |
||
| Line 25: | Line 25: | ||
Ref: http://weblogs.sqlteam.com/mladenp/archive/2008/04/29/SQL-Server-2005-Get-full-information-about-transaction-locks.aspx | Ref: http://weblogs.sqlteam.com/mladenp/archive/2008/04/29/SQL-Server-2005-Get-full-information-about-transaction-locks.aspx | ||
---- | |||
dleete | |||
---uk | |||
update ctOrders | |||
set ctor_bonus_cid=3, | |||
ctor_subtotal_cid=3, | |||
ctor_vatcash_cid=3, | |||
ctor_vatcost_cid=3, | |||
ctor_billduenow_CID=3 | |||
where ctor_PersonId in | |||
( | |||
select pers_personid | |||
from person | |||
where pers_SecTerr=-805306364 --uk | |||
) | |||
update ctOrders | |||
set ctor_bonus_cid=2, | |||
ctor_subtotal_cid=2, | |||
ctor_vatcash_cid=2, | |||
ctor_vatcost_cid=2, | |||
ctor_billduenow_CID=2 | |||
where ctor_PersonId in | |||
( | |||
select pers_personid | |||
from person | |||
where pers_SecTerr=-1073741819 --ireland | |||
) | |||
Revision as of 20:57, 30 May 2014
SQL for detecting locks in SQL
SELECT L.request_session_id AS SPID,
DB_NAME(L.resource_database_id) AS DatabaseName,
O.Name AS LockedObjectName,
P.object_id AS LockedObjectId,
L.resource_type AS LockedResource,
L.request_mode AS LockType,
ST.text AS SqlStatementText,
ES.login_name AS LoginName,
ES.host_name AS HostName,
TST.is_user_transaction as IsUserTransaction,
AT.name as TransactionName,
CN.auth_scheme as AuthenticationMethod
FROM sys.dm_tran_locks L
JOIN sys.partitions P ON P.hobt_id = L.resource_associated_entity_id
JOIN sys.objects O ON O.object_id = P.object_id
JOIN sys.dm_exec_sessions ES ON ES.session_id = L.request_session_id
JOIN sys.dm_tran_session_transactions TST ON ES.session_id = TST.session_id
JOIN sys.dm_tran_active_transactions AT ON TST.transaction_id = AT.transaction_id
JOIN sys.dm_exec_connections CN ON CN.session_id = ES.session_id
CROSS APPLY sys.dm_exec_sql_text(CN.most_recent_sql_handle) AS ST
WHERE resource_database_id = db_id()
ORDER BY L.request_session_id
dleete
---uk update ctOrders set ctor_bonus_cid=3, ctor_subtotal_cid=3, ctor_vatcash_cid=3, ctor_vatcost_cid=3, ctor_billduenow_CID=3 where ctor_PersonId in ( select pers_personid from person where pers_SecTerr=-805306364 --uk )
update ctOrders set ctor_bonus_cid=2, ctor_subtotal_cid=2, ctor_vatcash_cid=2, ctor_vatcost_cid=2, ctor_billduenow_CID=2 where ctor_PersonId in ( select pers_personid from person where pers_SecTerr=-1073741819 --ireland )