Skip to content

Latest commit

 

History

History
58 lines (45 loc) · 2.71 KB

File metadata and controls

58 lines (45 loc) · 2.71 KB
title sys.fulltext_semantic_language_statistics_database (Transact-SQL)
description sys.fulltext_semantic_language_statistics_database (Transact-SQL)
author rwestMSFT
ms.author randolphwest
ms.reviewer mikeray
ms.date 06/10/2016
ms.service sql
ms.subservice system-objects
ms.topic reference
f1_keywords
sys.fulltext_semantic_language_statistics_database_TSQL
fulltext_semantic_language_statistics_database_TSQL
fulltext_semantic_language_statistics_database
sys.fulltext_semantic_language_statistics_database
helpviewer_keywords
sys.fulltext_semantic_language_statistics_database catalog view
dev_langs
TSQL

sys.fulltext_semantic_language_statistics_database (Transact-SQL)

[!INCLUDE SQL Server]

Returns a row about the semantic language statistics database installed on the current instance of [!INCLUDEssNoVersion].

You can query this view to find out about the semantic language statistics component required for semantic processing.

Column name Type Description
database_id int ID of the database, unique within an instance of [!INCLUDEssNoVersion].
register_date datetime Date the database was registered for semantic processing.
registered_by int ID of the server principal that registered the database for semantic processing.
version nvarchar(128) The latest version information specific to the semantic language statistics database.

General Remarks

For more information, see Install and Configure Semantic Search.

Metadata

For information about the languages that are supported for semantic indexing, query the catalog view sys.fulltext_semantic_languages (Transact-SQL).

Security

Permissions

The visibility of the metadata in catalog views is limited to securables that a user either owns or on which the user has been granted some permission.

Examples

The following example shows how to query sys.fulltext_semantic_language_statistics_database to get information about the semantic language statistics database registered on the current instance of [!INCLUDEssNoVersion].

SELECT * FROM sys.fulltext_semantic_language_statistics_database;  
GO  

See Also

Install and Configure Semantic Search