Applies to DB2 only. Indicates whether overflow tables can be created or not. If table overflow support is enabled, Content Engine creates an overflow table if the row-size limit of a base DB2 table is exceeded. The default value is false.

Enabling table overflow support could slightly degrade database performance. It is recommended that you first consider metadata design options before enabling this support.

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

ToggleSyntax

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

ToggleRemarks

ToggleSee Also