Can select queries with read uncommitted block other processes?
Select queries in Read uncommitted isolation level will not take shared locks BUT takes Sch-S schema stability lock which is not compatible with any query which is trying to take schema level locks like Index rebuild, alter table. Such queries will be blocked by the select query you are running. Please see lock compatibility matrix. Its really a poor choice to use read uncommitted isolation level. Please read below to understand the problems you can get while using this isolation level.