IBM FileNet P8, Version 5.2            

Creating database indexes for class properties (Oracle)

To optimize the performance of those queries that search a class property, create an index for the property in the object store database. The index that you create is a specific type of function-based index in the following circumstances: case-insensitive search behavior is in effect, and the object store database is an Oracle database.

About this task

Important: Create function-based indexes only if case-insensitive search behavior is in effect.

Procedure

To create a function-based index for a class property:

  1. Connect to the object store database by using the appropriate Oracle database tool.
  2. Run a command with the following syntax:
    Command syntax
    CREATE INDEX idx_name ON table_name(LOWER(column_name));
    Example
    CREATE INDEX lc_lname ON DocVersion(LOWER(lname));
    table_name
    The table that contains the column: DocVersion for documents, Generic for custom objects, and Container for folders.
    column_name
    The name of the property column.
    idx_name
    The name of the index.


Feedback

Last updated: June 2013
p8pcc198.htm

© Copyright IBM Corporation 2014.
This information center is powered by Eclipse technology. (http://www.eclipse.org)