Table of Contents

Class CompatibilitySchema.FullTextCatalog

Namespace
LinqToDB.Tools.DataProvider.SqlServer.Schemas
Assembly
linq2db.Tools.dll

sys.sysfulltextcatalogs (Transact-SQL)

Applies to: √ SQL Server (all supported versions) √ Azure SQL Managed Instance √ Analytics Platform System (PDW)

Contains information about the full-text catalogs.

important


This SQL Server 2000 system table is included as a view for backward compatibility. We recommend that you use the current SQL Server system views instead. To find the equivalent system view or views, see Mapping System Tables to System Views (Transact-SQL). This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.


See sys.sysfulltextcatalogs.

[Table(Schema = "sys", Name = "sysfulltextcatalogs", IsView = true)]
public class CompatibilitySchema.FullTextCatalog
Inheritance
CompatibilitySchema.FullTextCatalog
Extension Methods

Properties

FTCatID

Identifier of the full-text catalog.

[Column("ftcatid")]
[Nullable]
public short? FTCatID { get; set; }

Property Value

short?

Name

Full-text catalog name specified by the user.

[Column("name")]
[NotNull]
public string Name { get; set; }

Property Value

string

Path

Root path specified by the user.

NULL = Path was not specified. The default (installation) path was used.

[Column("path")]
[Nullable]
public string? Path { get; set; }

Property Value

string

Status

Identified for informational purposes only. Not supported. Future compatibility is not guaranteed.

[Column("status")]
[Nullable]
public short? Status { get; set; }

Property Value

short?