Table of Contents

Class FullTextSearchSchema.SemanticLanguageStatisticsDatabase

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

sys.fulltext_semantic_language_statistics_database (Transact-SQL)

Applies to:SQL Server

Returns a row about the semantic language statistics database installed on the current instance of SQL Server.
You can query this view to find out about the semantic language statistics component required for semantic processing.


See sys.fulltext_semantic_language_statistics_database.

[Table(Schema = "sys", Name = "fulltext_semantic_language_statistics_database", IsView = true)]
public class FullTextSearchSchema.SemanticLanguageStatisticsDatabase
Inheritance
FullTextSearchSchema.SemanticLanguageStatisticsDatabase
Inherited Members
Extension Methods

Properties

DatabaseID

database_id NOT NULL int

ID of the database, unique within an instance of SQL Server.
[Column("database_id")]
[NotNull]
public int DatabaseID { get; set; }

Property Value

int

RegisterDate

register_date NOT NULL datetime

Date the database was registered for semantic processing.
[Column("register_date")]
[NotNull]
public DateTime RegisterDate { get; set; }

Property Value

DateTime

RegisteredBy

registered_by NOT NULL int

ID of the server principal that registered the database for semantic processing.
[Column("registered_by")]
[NotNull]
public int RegisteredBy { get; set; }

Property Value

int

Version

version NOT NULL nvarchar(128)

The latest version information specific to the semantic language statistics database.
[Column("version")]
[NotNull]
public string Version { get; set; }

Property Value

string