What is blocking in SQL Server? If this situation occurs how
to troubleshoot this issue

Answers were Sorted based on User's Feedback



What is blocking in SQL Server? If this situation occurs how to troubleshoot this issue..

Answer / wazid ali

Blocking in SQL Server is a scenario where one connection to
SQL Server locks one or more records, and a second
connection to SQL Server requires a conflicting lock type on
the record or records locked by the first connection. This
causes the second connection to wait until the first
connection releases its locks. By default, a connection will
wait an unlimited amount of time for the blocking lock to go
away.

Is This Answer Correct ?    5 Yes 0 No

What is blocking in SQL Server? If this situation occurs how to troubleshoot this issue..

Answer / shyamsri83

When one transaction is trying to access a record, which is
used by other, then the first transaction has to wait,
untill the second transaction complete. This is called
blocking.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL Server Interview Questions

What is the difference between grant and with grant while giving permissions to the user?

0 Answers  


how to select a field with firstletter as capital and remaining are small letters

11 Answers  


What is inline table-value user-defined function?

0 Answers  


What is the architecture of ms sql reporting service?

0 Answers  


Explain error and transaction handling in sql server?

0 Answers  






How to rebuild master databse?

0 Answers  


How you can change a cross join into an inner join?

0 Answers  


What do you mean by an execution plan?

0 Answers  


Tell me what are the advantages of using stored procedures?

0 Answers  


what is an extended stored procedure? : Sql server database administration

0 Answers  


Define tempdb database?

0 Answers  


What is transactional replication?

0 Answers  


Categories