Hi Team,When am updating a row, the corresponding rows should be locked for update.BEGIN TRANSACTION; GO UPDATE UNIFY SET NAME ='HHT' WHERE RECORD_ID=789 GOIn above scenario, the record_id=789 should be locked for update in all corresponding table until I COMMIT / ROLLBACK
↧