博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sqlserver 实现数据库全文检索
阅读量:5279 次
发布时间:2019-06-14

本文共 1177 字,大约阅读时间需要 3 分钟。

--在执行该脚本程序之前启动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 Productswhere contains(Product_name,'%1806%') or contains(Product_type,'%1806%')

  

转载于:https://www.cnblogs.com/chenjt/p/3240076.html

你可能感兴趣的文章
java选择文件时提供图像缩略图[转]
查看>>
方维分享系统二次开发, 给评论、主题、回复、活动 加审核的功能
查看>>
Matlab parfor-loop并行运算
查看>>
string与stringbuilder的区别
查看>>
2012-01-12 16:01 hibernate注解以及简单实例
查看>>
iOS8统一的系统提示控件——UIAlertController
查看>>
PAT甲级——1101 Quick Sort (快速排序)
查看>>
python创建进程的两种方式
查看>>
1.2 基础知识——关于猪皮(GP,Generic Practice)
查看>>
迭代器Iterator
查看>>
java易错题----静态方法的调用
查看>>
php建立MySQL数据表
查看>>
最简单的线程同步的例子
查看>>
旅途上看的电影和观后感
查看>>
Ztree异步树加载
查看>>
关于IE和火狐,谷歌,Safari对Html标签Object和Embed的支持问题
查看>>
poj3320 Jessica's Reading Problem(尺取思路+STL)
查看>>
分布式计算开源框架Hadoop介绍
查看>>
安卓平台接口剖析
查看>>
坏的事情不都会带来坏的结果
查看>>