MySQL Forums
Forum List  »  Microsoft SQL Server

SQL Server allows multiple clients
Posted by: mittu mittu
Date: December 30, 2009 12:26AM

SQL Server allows multiple clients to use the same database concurrently. As such, it needs to control concurrent access to shared data, to ensure data integrity - when multiple clients update the same data, or clients attempt to read data that is in the process of being changed by another client. SQL Server provides two modes of concurrency control: pessimistic concurrency and optimistic concurrency. When pessimistic concurrency control is being used, SQL Server controls concurrent access by using locks. Locks can be either shared or exclusive. Exclusive lock grants the user exclusive access to the data - no other user can access the data as long as the lock is held.

Copiers
easeus partition manager

Options: ReplyQuote


Subject
Written By
Posted
SQL Server allows multiple clients
December 30, 2009 12:26AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.