SQL Server/T-SQL Tutorial/System Tables Views/sys.fulltext index columns — различия между версиями

Материал из SQL эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 16:46, 26 мая 2010

The sys.fulltext_index_columns system catalog view lists all ull-text indexed columns in the database.

   <source lang="sql">

3> 4> SELECT object_name(object_id) tblname, column_id 5> FROM sys.fulltext_index_columns 6> GO tblname

        column_id


-----------

(0 rows affected) 1></source>