Table LS_LOCK

The content object lock table. The content locks are used when an object is being edited by a user, in which case it is first locked by adding a row to this table. By the use of a unique index on the content object identifier, multiple locks of the same object can be avoided.

Column Summary
ACQUIRED DATETIME NOT NULL
      The date and time that the lock was acquired.
CONTENT INTEGER NOT NULL
      The content object identifier.
DOMAIN VARCHAR(30) NOT NULL
      The name of the domain the content object belongs to.
USER VARCHAR(30) NOT NULL
      The name of the user that acquired the lock.

Index Summary
PRIMARY KEY (CONTENT)
      The content lock is uniquely indexed by the object identifier.

Column Detail

DOMAIN

DOMAIN VARCHAR(30) NOT NULL
The name of the domain the content object belongs to.

Reference To:

LS_DOMAIN.NAME
LS_CONTENT.DOMAIN

CONTENT

CONTENT INTEGER NOT NULL
The content object identifier. The lock is set on all revisions of a content object.

Reference To:

LS_CONTENT.ID

USER

USER VARCHAR(30) NOT NULL
The name of the user that acquired the lock.

Reference To:

LS_USER.NAME

ACQUIRED

ACQUIRED DATETIME NOT NULL
The date and time that the lock was acquired.

Index Detail

PRIMARY KEY

PRIMARY KEY (CONTENT)
The content lock is uniquely indexed by the object identifier.