The frequency (in seconds) with which database tables containing temporary content will be scrubbed to eliminate abandoned content. Abandoned content is content not participating in an existing transaction and not committed as part of a previous transaction.

This property works in conjunction with the TempDBContentLifetime property to determine which temporary content gets deleted as part of a periodic cleanup.


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

Syntax

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

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

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

Remarks

See Also