In SSMS 2008 I created a new query window and issued the following statement (notice I don't commit the transaction):
Begin Tran
Update Master.Part Set LastModifiedUser = 'me'
I then open another new query window and entered the following query:
Select * From sys.dm_exec_requests
The DMV does not show the query from the first query window. Anyone know why not?
Thanks.