Which of the following operations is permitted with a shared lock?
A shared lock allows data to be read concurrently while preventing modifications to the locked data. Read operations are permitted; update, delete, and insert operations require write or exclusive locking.
Community Discussion