不能对表或索引视图使用 CONTAINS 或 FREETEXT 谓词
我正在尝试修改存储过程(在 select 语句中添加新列),但收到此错误:
Cannot use a CONTAINS or FREETEXT predicate on table or indexed view 'vwPersonSearch' because it is not full-text indexed.
当我尝试使用 SQL Server 2008 R 2 Management Studio 在视图“vwPersonSearch”上创建全文索引时,我得到此错误:
必须在此表/视图上定义唯一列。
请提出解决方案
I am trying to modify a stored procedure ( adding a new column in select statement) but I am getting this error:
Cannot use a CONTAINS or FREETEXT predicate on table or indexed view 'vwPersonSearch' because it is not full-text indexed.
When I try to create a Full text index on view 'vwPersonSearch' using SQL server 2008 R 2 management studio, I am getting this error:
A unique column must be defined on this table/view.
Please suggest solution to it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要创建全文索引,必须指定键索引,该索引必须是唯一、单键、不可为空的列。为了获得最佳性能,建议使用整数列类型。
请参阅 http://technet.microsoft.com/en-us/library/ms187317。 aspx 了解更多详细信息。
To create a full text index, you must specify a key index, which must be a unique, single-key, non-nullable column. An integer column type is recommended for best performance.
See http://technet.microsoft.com/en-us/library/ms187317.aspx for more details.
您可以更改列使其
唯一
如果可以的话,或者添加某种id
来完成该部分。You may alter a column to be
unique
if that's one that could be or add anid
of some sort to do that part.