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 (all supported versions)
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.
[Table(Schema = "sys", Name = "fulltext_semantic_language_statistics_database", IsView = true)]
public class FullTextSearchSchema.SemanticLanguageStatisticsDatabase
- Inheritance
-
FullTextSearchSchema.SemanticLanguageStatisticsDatabase
- Extension Methods
Properties
DatabaseID
ID of the database, unique within an instance of SQL Server.
[Column("database_id")]
[NotNull]
public int DatabaseID { get; set; }
Property Value
RegisterDate
Date the database was registered for semantic processing.
[Column("register_date")]
[NotNull]
public DateTime RegisterDate { get; set; }
Property Value
RegisteredBy
ID of the server principal that registered the database for semantic processing.
[Column("registered_by")]
[NotNull]
public int RegisteredBy { get; set; }
Property Value
Version
The latest version information specific to the semantic language statistics database.
[Column("version")]
[NotNull]
public string Version { get; set; }