If I start a transaction with isolation level "read uncommitted" in SQL Server, then I read and update a particular row, is that row then locked by virtue of being part of a transaction?
If another transaction (also with read uncommitted) tries to read and update that row, will it be blocked as long as the first transaction has not yet completed?