SQL Server 建立全文索引

來源:互聯網
上載者:User

標籤:blog   http   io   ar   for   sp   2014   c   on   

背景知識:

            全文檢索目錄是全文索引是容器、所以在建立全文索引前要有全文檢索目錄。

第一步:

         建立全文檢索目錄:

                          create fulltext catalog catalog_name

                          [on filegroup_name]

                          [with accent_sensitivity = on | off]

                          [as default]

                          [authorization owner_name];     

 

                          create fulltext catalog ctl_for_Studio
                          on filegroup FG1
                          with
                          accent_sensitivity = on;
                          go

                          

第二步:

         建立全文索引:

                          create fulltext index on table_name(column_list)

                          key index index_name

                          [on fulltext_catalog_name]

                          [with change_tracking = manual | auto | off        stoplist= off | system | stoplist_name]

 

                         create fulltext index on Document(DocumentSummary,Document type column fileExtension)
                         key index kix_for_Document_DS_D
                         on ctl_for_Studio
                         with
                         change_tracking = auto ,
                         stoplist = system;
                         --- type column column_type_name MSDN 上的說明不是太清楚,好在它是可以不指定的
                         go

                         注意:全文檢索搜尋鍵必須是唯一的、不可為 Null 的單列索引,並且該索引不是離線的,不是在不確定的或不精確的非保存的計算資料行上定義的,沒有篩選器,且最                                     大大小為 900 個位元組。請為全文鍵選擇其他索引。

 

SQL Server 建立全文索引

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.