--- description: "sys.fulltext_catalogs (Transact-SQL)" title: "sys.fulltext_catalogs (Transact-SQL) | Microsoft Docs" ms.custom: "" ms.date: "06/10/2016" ms.prod: sql ms.prod_service: "database-engine" ms.technology: system-objects ms.topic: "reference" f1_keywords: - "sys.fulltext_catalogs_TSQL" - "sys.fulltext_catalogs" - "fulltext_catalogs" - "fulltext_catalogs_TSQL" dev_langs: - "TSQL" helpviewer_keywords: - "sys.fulltext_catalogs catalog view" ms.assetid: cf1489ff-4819-41fa-a62a-4ed797a16207 author: pmasl ms.author: pelopes ms.reviewer: mikeray --- # sys.fulltext_catalogs (Transact-SQL) [!INCLUDE [SQL Server](../../includes/applies-to-version/sqlserver.md)] Contains a row for each full-text catalog. > [!NOTE] > The following columns will be removed in a future release of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]: **data_space_id**, **file_id**, and **path**. Do not use these columns in new development work, and modify applications that currently use any of these columns as soon as possible. |Column name|Data type|Description| |-----------------|---------------|-----------------| |fulltext_catalog_id|**int**|ID of the full-text catalog. Is unique across the full-text catalogs in the database.| |name|**sysname**|Name of the catalog. Is unique within the database.| |path|**nvarchar(260)**|Name of the catalog directory in the file system.| |is_default|**bit**|The default full-text catalog.

True = Is default.

False = Is not default.| |is_accent_sensitivity_on|**bit**|Accent-sensitivity setting of the catalog.

True = Is accent-sensitive.

False = Is not accent-sensitive.| |data_space_id|**int**|Filegroup where this catalog was created.| |file_id|**int**|File ID of the full-text file associated with the catalog.| |principal_id|**int**|ID of the database principal that owns the full-text catalog.| |is_importing|**bit**|Indicates whether the full-text catalog is being imported:

1 = The catalog is being imported.

2 = The catalog is not being imported.| ## Permissions [!INCLUDE[ssCatViewPerm](../../includes/sscatviewperm-md.md)] ## See Also [Catalog Views (Transact-SQL)](../../relational-databases/system-catalog-views/catalog-views-transact-sql.md) [CREATE FULLTEXT CATALOG (Transact-SQL)](../../t-sql/statements/create-fulltext-catalog-transact-sql.md) [ALTER FULLTEXT CATALOG (Transact-SQL)](../../t-sql/statements/alter-fulltext-catalog-transact-sql.md) [DROP FULLTEXT CATALOG (Transact-SQL)](../../t-sql/statements/drop-fulltext-catalog-transact-sql.md)