What is Lock Objects and types of lock objects ?

Questions by b_kamepalli

Showing Answers 1 - 6 of 6 Answers

ravi sankar

  • Jul 27th, 2006
 

 Lock objects are function modules to avoid accessing data by two or more users.

there r two types of lock objects are available, DEQUEE, ENQUEE

  Was this answer useful?  Yes

Arivazhagan

  • Nov 16th, 2006
 

multiple users access same records synchronized by lock objects.

1. syncronize lock

2. asyncronize lock

  Was this answer useful?  Yes

Senthil Kumar

  • Jan 19th, 2007
 

Type of locks:

Exclusive Lock: The locked data can be read or processed by one user only.

Shared Lock: Several users can read the same data at the same time, but as soon as a user edits the data, a second user can no longer access this data.

Exclusive but not cumulative lock: Exclusive locks can be requested by the same transaction more than once and handled successively, but an exclusive but not cumulative lock can only be requested once by a given transaction. All other lock requests are rejected.

locking an object means synchronizing the simultaneous access by several users on same data

types:
            readlock(shared lock)
            write lock(exclusive lock)

             enhanced write lock

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions