FullTextService.DataTimeout Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the time interval allowed for Microsoft Search to wait for data to be returned during full-text index population before timing out.

Namespace:   Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public TimeSpan DataTimeout { get; set; }
public:
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
property TimeSpan DataTimeout {
    TimeSpan get();
    void set(TimeSpan value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member DataTimeout : TimeSpan with get, set
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>
Public Property DataTimeout As TimeSpan

Property Value

Type: System.TimeSpan

A TimeSpan system object value that specifies the time-out interval allowed for data to be returned during full-text index population.

Remarks

If a time-out occurs before SQL Server responds to a database request, the index population will not complete.

Examples

Legacy Code Example

Implementing Full-Text Search

See Also

FullTextService Class
Microsoft.SqlServer.Management.Smo Namespace

CREATE FULLTEXT INDEX (Transact-SQL)
CREATE FULLTEXT CATALOG (Transact-SQL)
Unable to find linked topic 'db3747e0-db12-4c69-9d81-b5011984eb3a'.

Return to top