为SQL表添加全文索引范例

--范例:

--为HR_Job中的JobTitle,JobDes创建全文索引

execute sp_fulltext_catalog 'boli188', 'create' --创建全文目录,boli188为目录名.

create   unique   index   JobId   on   HR_Job(JobId) --定义唯一的索引,必须是主键.JobId为HR_Job表主键.

execute sp_fulltext_table 'HR_Job','create', 'boli188','JobId'--为Title列建立全文索引数据元,JobId为HR_Job表中由主键所建立的唯一索引,这个参数是必需的。

 

execute sp_fulltext_column 'HR_Job', 'JobTitle', 'add'

execute sp_fulltext_column 'HR_Job','JobDes', 'add'--设置全文索引列名



execute sp_fulltext_table 'HR_Job', 'activate'--建立全文索引

execute sp_fulltext_catalog 'boli188', 'start_full'--填充全文索引目录

 

 

你可能感兴趣的:(sql)