top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is concurrency in oracle?

+3 votes
206 views
What is concurrency in oracle?
posted Oct 9, 2014 by Vidhya Sagar

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

Concurrency is allowing simultaneous access of same data by different users.

Locks useful for accessing the database are

a) Exclusive: The exclusive lock is useful for locking the row when an insert, update or delete is being done. This lock should not be applied when we do only select from the row.

b) Share lock: We can do the table as Share Lock as many share locks can be put on the same resource.

answer Oct 10, 2014 by Arun Gowda
...