The default number of rows that can be returned from the indexing data during a search. This value can be exceeded using the FULLTEXTROWLIMIT option for a SQL statement. As this value is increased, the amount of system resources used in a full text search operation goes up, as does the time to execute a full text search that results in a large number of hits. As this value is decreased, the accuracy of full text searches may be reduced.


Namespace: FileNet.Api.Core
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Property FullTextRowDefault As Nullable(Of Integer)
C#
Nullable<int> FullTextRowDefault { get; set; }
C++
property Nullable<int> FullTextRowDefault abstract  {
    Nullable<int> get();
    void set(Nullable<intvalue);
}
J#
/** property */
public Nullable<int> get_FullTextRowDefault();

/** property */
public void set_FullTextRowDefault(Nullable<intvalue);
JScript
public function get FullTextRowDefault() : Nullable<int>

public function set FullTextRowDefault(value : Nullable<int>);

Remarks

See Also