UNABLE_TO_LOCK_ROW, Unable to obtain exclusive access to this record exception in Salesforce

UNABLE_TO_LOCK_ROW, Unable to obtain exclusive access to this record exception in Salesforce

The error message “unable to obtain exclusive access to this record or 1 records:” indicates that a process was attempting to obtain a lock on a record for 10 seconds before eventually quitting the process with an error message indicating that the record is unavailable.

For consistent data, when a record is being created or updated, it is locked so that other users cannot update the record.

FOR UPDATE keyword in SOQL helps us to lock the records from being updating from another request. Sample Code – https://www.infallibletechie.com/2015/05/how-to-lock-records-using-apex-in.html

Locking Issue may happen due to Skewing issue – https://www.infallibletechie.com/2019/11/salesforce-data-skew.html

1. Go to Background Jobs under setup and check whether any Sharing Rule Calculation or Picklist field list of value change is happening. If yes, wait for the jobs to complete.

2. Other user may also work on the same record at the same time. So, try after few minutes.

3. If you are using Bulk API for Data Loads, use Serial Mode instead of Parallel mode. If you want to use Parallel mode, make sure child records of the same parent are happening on the same batch of records.

Leave a Reply