Error_executing_query_lock_timeout

Hi who would be the system admin here? “ErrorCode”: “ERROR_EXECUTING_QUERY_LOCK_TIMEOUT”,
“ErrorDescription”: “Error executing query. The table and/or record(s) being queried is locked by another process and wasn’t released in a timely manner. See details for more.”,
“ErrorStyle”: null,
“ErrorPayload”: ,
“ErrorTechnicalDetails”: “If the problem persists, reach out to a system admin and give them this error ID: {SQL-EX-4b974c24-3f7f-4a94-9421-ab41f46eb4c7}”,

The system admin in this case refers to whoever was responsible for the logic that was running when this error occurred. Do you have a logic block stack trace to provide more insight into what was going on when this happened?

I was running this CURL to insert record into SalesOrder Table:

curl --request POST \
  --url https://api-nw251coxintnext.releasepipeline.nextworld.net:443/v2/data/SalesOrders \
  --header 'Authorization: Bearer ' \
  --header 'content-type: application/json' \
  --data '{
  "records": [
    {
      "nateDisposition": "PRISTINE",
      "appData": {
        "Company": "505c4bfa-f104-11ed-892f-0d75d66845d9",
        "SalesOrderType": "SO",
        "OrganizationalUnit": "505c4bfa-f104-11ed-892f-0d75d66845d9",
        "CustomerName": "817ac07f-c60a-46a5-bff7-f9a7c25f2e74",
        "ShipTo": "505c4bfa-f104-11ed-892f-0d75d66845d9",
        
        "SalesSubType": "nsCoxCOUNTERNS"
        
        
        

      },
      "children": [
        {
          "nwTable": "SalesOrderDetail",
          "records": [
            {
              "appData": {
                "Item": "0613b10a-9071-423a-a873-2f76a8352b15",
                "RequestedQuantity": 2,
                "SalesLineType":"STOCK",
                "UnitOfMeasure": "nsCoxEA",
                "DescriptionOfItem": "PART1A",
                "PriceEffectiveDateTime": "2025-10-10T23:38:51.814Z",
                "Price": {
                  "CurrencyCode": "USD",
                  "CurrencyBigDecimalValue": "9000"
                },
                "nsCoxFulFillmentMethod": "SO",
                "nsCoxRepairOrderNumber": "4000015430",
                "nsCoxRepairOrderPartSequenceNumber": "a5da1bbe-732e-498b-a0a6-a2b9cd2c4dd4"
                
                
                
                
                
                
                
              }
            }
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
            
          ]
        }
      ]
    }
  ],
  "createContainer": true,
  "commitContainer": true,
  "containerPerRecord": false,
  "containerType": "DEFAULT"
}
'

Seeing this on the UI as well

Please look at the response returned from that call to see if there is a logic block stack trace included.

Waiting to run into this again, it is an intermittent issue.