I am very new to SQL. I am using SQL Server 2008 R2. I have following issues;
(1)
A transaction has started but its commit point is not reached.
UPDATE Student
SET subject = 'Technology'
WHERE subjectCode = 'tech';
When this is executing what type of locking is having full table/row??
(2)
Is there is a way to get locks held by a transaction?