不能对表或索引视图使用 CONTAINS 或 FREETEXT 谓词

发布于 2024-12-23 15:41:58 字数 322 浏览 0 评论 0原文

我正在尝试修改存储过程(在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

痴梦一场 2024-12-30 15:41:58

要创建全文索引,必须指定键索引,该索引必须是唯一、单键、不可为空的列。为了获得最佳性能,建议使用整数列类型。

请参阅 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.

还给你自由 2024-12-30 15:41:58

您可以更改列使其唯一如果可以的话,或者添加某种 id 来完成该部分。

You may alter a column to be unique if that's one that could be or add an id of some sort to do that part.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文