Skip to content

Latest commit

 

History

History
50 lines (40 loc) · 2.24 KB

File metadata and controls

50 lines (40 loc) · 2.24 KB
title DROP FULLTEXT CATALOG (Transact-SQL)
description DROP FULLTEXT CATALOG (Transact-SQL)
author WilliamDAssafMSFT
ms.author wiassaf
ms.date 03/14/2017
ms.service sql
ms.subservice t-sql
ms.topic reference
f1_keywords
DROP_FULLTEXT_CATALOG_TSQL
DROP FULLTEXT CATALOG
helpviewer_keywords
dropping full-text catalogs
removing full-text catalogs
full-text catalogs [SQL Server], removing
deleting full-text catalogs
DROP FULLTEXT CATALOG statement
dev_langs
TSQL

DROP FULLTEXT CATALOG (Transact-SQL)

[!INCLUDE SQL Server SQL Database]

Removes a full-text catalog from a database. You must drop all full-text indexes associated with the catalog before you drop the catalog.

Topic link icon Transact-SQL Syntax Conventions

Syntax

DROP FULLTEXT CATALOG catalog_name  

[!INCLUDEsql-server-tsql-previous-offline-documentation]

Arguments

catalog_name
Is the name of the catalog to be removed. If catalog_name does not exist, [!INCLUDEmsCoName] [!INCLUDEssNoVersion] returns an error and does not perform the DROP operation. The filegroup of the full-text catalog must not be marked OFFLINE or READONLY for the command to succeed.

Permissions

User must have DROP permission on the full-text catalog or be a member of the db_owner, or db_ddladmin fixed database roles.

See Also

sys.fulltext_catalogs (Transact-SQL)
ALTER FULLTEXT CATALOG (Transact-SQL)
CREATE FULLTEXT CATALOG (Transact-SQL)
Full-Text Search