So entsperren Sie die Tabelle in SQL Server
SELECT
OBJECT_NAME(P.object_id) AS TableName,
Resource_type,
request_session_id
FROM
sys.dm_tran_locks L
JOIN
sys.partitions P ON L.resource_associated_entity_id = p.hobt_id
WHERE
OBJECT_NAME(P.object_id) = 'table_name'
-- and killed that respective session by
Kill session_ID
Tiny Coders