What are the two types of concurrency?
Answers were Sorted based on User's Feedback
Answer / s.vanitha
Pessimistic concurrency control
Optimistic concurrency control
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / afan
When many people attempt to modify data in a database at
the same time, a system of controls must be implemented so
that modifications made by one person do not adversely
affect those of another person. This is called concurrency
control.
Concurrency control theory has two classifications for the
methods of instituting concurrency control:
Pessimistic concurrency control
A system of locks prevents users from modifying data in a
way that affects other users. After a user performs an
action that causes a lock to be applied, other users cannot
perform actions that would conflict with the lock until the
owner releases it. This is called pessimistic control
because it is mainly used in environments where there is
high contention for data, where the cost of protecting data
with locks is less than the cost of rolling back
transactions if concurrency conflicts occur.
Optimistic concurrency control
In optimistic concurrency control, users do not lock data
when they read it. When a user updates data, the system
checks to see if another user changed the data after it was
read. If another user updated the data, an error is raised.
Typically, the user receiving the error rolls back the
transaction and starts over. This is called optimistic
because it is mainly used in environments where there is
low contention for data, and where the cost of occasionally
rolling back a transaction is lower than the cost of
locking data when read.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / priyanka
there are basically two types of concurracnies...
1-> logical concurrency
2-> physical concurrency
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nomaan khan
Concurrency occur when more than one Task want to perform
at same time, so as per my knowledge it will be of two type
1. Concurrent read
2. Concurrent Write
In this concurrent Read permission will be grant by
Admin but Concurrent write permission will not grant by the
Admin because it will give us a Fantom Problem.
| Is This Answer Correct ? | 0 Yes | 3 No |
Diff between Composite key, Alternate Key, Candidate Key, Primary Key, Unique Key, Super Key, Foreign Key
How to find out name of all employees who has salary less than 200 Rs.?
What are exact numeric data types in ms sql server?
How to enable/disable indexes?
How to select some specific rows from a table in ms sql server?
What is meant by indexing files?
What do you understand by the data quality services in sql server?
Can you explain different types of locks in sql server?
Distinguish between nested subquery and correlated subquery?
What is the maximum size of sql server database?
What are the advantages of sql stored procedure?
Explain the steps to create and execute a user-defined function in the sql server?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)