In query analyzer start 2 sessions.
Session 1:
begin transaction
update some_table set some_column = some_value
Session 2
Select * from some_table.
Session 2 is blocked by session 1.
Rollback the transaction when you complete the testing.
Thanks Tom.