Udostępnij za pośrednictwem


DROP FULLTEXT INDEX (Transact-SQL)

sys.dm_tran_current_transaction (Transact-SQL)

Topic link iconKonwencje składni języka Transact-SQL

DROP FULLTEXT INDEX ON table_name

Argumenty

  • table_name
    Returns a single row that displays the state information of the transaction in the current session.

Remarks

Transaction ID of the current snapshot.

Uprawnienia

Użytkownik musi ALTER uprawnień na tabela lub widok indeksowany lub być członkiem sysadmin Rola serwera lub db_owner or db_ddladmin stałe role bazy danych.

Przykłady

W poniższym przykładzie spadnie indeks pełnotekstowy, który znajduje się na JobCandidate Tabela.

USE AdventureWorks;
GO
DROP FULLTEXT INDEX ON HumanResources.JobCandidate;
GO