Indicates whether the index is case-insensitive or not.

If you set the value of this property to true, the server will retain the value only if the underlying database is capable of handling expression-based indexes and if string-valued columns have been included in the index definition. Otherwise, the server will set the value of this property to false, and a message indicating this change is posted to the p8_server_error.log file.

If you do not specify a value for this property, the server sets the value to true if all of the following conditions are met:

  • The value of the ForceCaseInsensitiveSearch property on the ObjectStore is true.
  • The underlying database is case-sensitive.
  • The database is capable of handling expression-based indexes.
  • There are string-valued columns specified in the index definition.

Otherwise, the server sets the value of this property to false.

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

ToggleSyntax

Visual Basic (Declaration)
Property ForCaseInsensitiveSearch As Nullable(Of Boolean)
C#
Nullable<bool> ForCaseInsensitiveSearch { get; set; }
Visual C++
property Nullable<bool> ForCaseInsensitiveSearch {
	Nullable<bool> get ();
	void set (Nullable<bool> value);
}
JavaScript
function get_forCaseInsensitiveSearch();
function set_forCaseInsensitiveSearch(value);

ToggleRemarks

Metadata

AllowsDefaultChange: false
Cardinality: SINGLE
CopyToReservation: false
DataType: BOOLEAN
IsHidden: false
IsOrderable: false
IsSearchable: false
IsValueRequired: false
ModificationAccessRequired: WRITE
PersistenceType: OWN_COLUMN
PropertyDefaultBoolean: null
RequiresUniqueElements: false
Settability: SETTABLE_ONLY_ON_CREATE
TargetAccessRequired: READ

ToggleSee Also