vote up 0 vote down star

Hi. During the ASP.NET execution of my app, it seems SQL 2008 Express holds some lock, and I get

Timeout expired.  The timeout period elapsed prior to completion of

the operation or the server is not responding

Maybe some of my query is not optimized. Visual Studio crashes with:

Microsoft Visual Studio may be unstable now. It is recommended that

you save all files and exit.

I need to see what query is blocking my tables, but I have the Express version. How can I do?

Thanks

flag

67% accept rate
try to execute my answer – Eric May 25 at 18:55

4 Answers

vote up 0 vote down

You can query against the sys.dm_tran_locks dynamic view to obtain this information. Go here on MSDN to lean more.

link|flag
can I view the query that is blocking? – Robert May 25 at 15:42
vote up 0 vote down

all you have to do is execute this

sp_who

tells you everything you need to know.

link|flag
vote up 0 vote down

sp_who2 is a newer version of sp_who

link|flag
vote up 1 vote down
exec sp_lock

and

exec sp_who2
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.