sys.sp_fulltext_column

general
#stored-procedure

Description

Specifies whether or not a particular column of a table participates in full-text indexing. A one-part or two-part table name. The table must exist in the current database. The table. The column must be either a character, , and can’t be a computed column. This feature will be removed in a future version of SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.

Syntax

sp_fulltext_column
[ @tabname = ]
N
'tabname'
, [ @colname = ]
N
'colname'
, [ @action = ]
'action'
[ , [ @language = ] language ]
[ , [ @type_colname = ]
N
'type_colname'
]
[ ; ]