Oracle Essbase · Schema

Lock

A lock on a database object or block.

AnalyticsBudgetingBusiness IntelligenceFinancial ConsolidationMulti-Dimensional DatabaseOLAPPlanning

Properties

Name Type Description
lockId string Lock identifier.
userId string User who holds the lock.
objectName string Name of the locked object.
lockType string Type of lock.
lockTime integer Time the lock was acquired in milliseconds since epoch.
View JSON Schema on GitHub

JSON Schema

oracle-essbase-lock-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Lock",
  "title": "Lock",
  "type": "object",
  "description": "A lock on a database object or block.",
  "properties": {
    "lockId": {
      "type": "string",
      "description": "Lock identifier."
    },
    "userId": {
      "type": "string",
      "description": "User who holds the lock."
    },
    "objectName": {
      "type": "string",
      "description": "Name of the locked object."
    },
    "lockType": {
      "type": "string",
      "description": "Type of lock."
    },
    "lockTime": {
      "type": "integer",
      "format": "int64",
      "description": "Time the lock was acquired in milliseconds since epoch."
    }
  }
}