sqlserver 实现数据库全文检索
生活随笔
收集整理的這篇文章主要介紹了
sqlserver 实现数据库全文检索
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
--在執行該腳本程序之前啟動sql server的全文搜索服務,即microsoft search服務
use huarui_db --打開數據庫
go
--檢查huarui_db是否支持全文索引,如果不支持全文索引,則使用sp_fulltext_datebase打開該功能
if (select databaseproperty ('huarui_db','IsFulltextEnables'))=0
execute sp_fulltext_database 'enable'
--建立全文目錄FullText_huarui_db
execute sp_fulltext_catalog 'FullText_huarui_db','create'
--為Products表建立全文索引數據元
execute sp_fulltext_table 'Products','create','FullText_huarui_db','PK_Products' --設置全文索引列名
execute sp_fulltext_column 'Products','Product_name','add'
execute sp_fulltext_column 'Products','Product_type','add'
execute sp_fulltext_column 'Products','Category_name','add'
execute sp_fulltext_column 'Products','Memo1','add'
--建立全文索引
--execute sp_fulltext_table 'FullText_huarui_db','activate'
--填充全文索引目錄
execute sp_fulltext_catalog 'FullText_huarui_db','start_full' GO
--檢查全文目錄填充情況
WHILE FulltextCatalogProperty('FullText_huarui_db','PopulateStatus')<>0
BEGIN
--如果全文目錄正處于填充狀態,則等待30秒后再檢測一次 WAITFOR DELAY '0:0:30'
END
--全文目錄填充完成后,使用全文目錄檢索
--查詢title列或notes列中包含有database或computer字符串的圖書名稱
SELECT *
FROM Products
where contains(Product_name,'%1806%')
or contains(Product_type,'%1806%')
轉載于:https://www.cnblogs.com/chenjt/p/3240076.html
總結
以上是生活随笔為你收集整理的sqlserver 实现数据库全文检索的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: c语言的优先级问题
- 下一篇: 韦东山驱动视频笔记——3.字符设备驱动程