The object ID (GUID) of the full IBM Content Search Services index that contains the original index entry to be removed by the server as a result of this update index request.

The Content Engine server sets this property if it discovers during an update index request that the current index for the source object is full. When the server attempts to update an index entry in an index that is full, it must instead create a new index entry in an alternative index and delete the original entry in the full index. To ensure that the new index entry is created before the original index entry is deleted, the server performs these tasks in the following order:

  1. Locates an open index to be assigned as the alternative index for the source object. If an open index cannot be found, one is created.
  2. Sets the RemovalIndexationId property of the IndexRequest object representing the update index request to the object ID of the full index.
  3. Sets the IndexationId property of the IndexRequest object representing the update index request to the object ID of the alternative index.
  4. Sets the IndexationId property of the source object to the object ID of the alternative index.
  5. Creates an index entry in the alternative index.
  6. Deletes the original index entry from the full index.

Namespace:  FileNet.Api.Admin
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
ReadOnly Property RemovalIndexationId As Id
C#
Id RemovalIndexationId { get; }
Visual C++
property Id^ RemovalIndexationId {
	Id^ get ();
}
JavaScript
function get_removalIndexationId();

ToggleRemarks

ToggleSee Also