sp_help_fulltext_columns (Transact-SQL)
Returns the columns designated for full-text indexing.
Important |
|---|
This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature. Use the sys.fulltext_index_columns catalog view instead. |
Column name | Data type | Description |
|---|---|---|
TABLE_OWNER | sysname | Table owner. This is the name of the database user that created the table. |
TABLE_ID | int | ID of the table. |
TABLE_NAME | sysname | Name of the table. |
FULLTEXT_COLUMN_NAME | sysname | Column in a full-text indexed table that is designated for indexing. |
FULLTEXT_COLID | int | Column ID of the full-text indexed column. |
FULLTEXT_BLOBTP_COLNAME | sysname | Column in a full-text indexed table that specifies the document type of the full-text indexed column. This value is only applicable when the full-text indexed column is a varbinary(max) or image column. |
FULLTEXT_BLOBTP_COLID | int | Column ID of the document type column. This value is only applicable when the full-text indexed column is a varbinary(max) or image column. |
FULLTEXT_LANGUAGE | sysname | Language used for the full-text search of the column. |

Important