全文搜索安装

编程入门 行业动态 更新时间:2024-10-25 16:26:12
本文介绍了全文搜索安装的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我已经安装了sqlserver2008. 但是在这种情况下,无法启用全文搜索. 当我执行"select fulltextserviceproperty(''isfulltextinstalled'')时,结果为0. 我不想失去我的这个实例.我应该怎么做才能启用此服务. 我正在Windows7上工作. 在此先感谢..:)

i have installed sqlserver 2008. But in that full text searching is not enabled. When i executed "select fulltextserviceproperty(''isfulltextinstalled'')" result was 0. I don''t want to lose my this instance. what should i do to enable this service.?? I am working on windows7. Thanks in advance..:)

推荐答案

要为表格启用全文索引 1.展开服务器组,再展开数据库",再展开用户数据库",然后展开包含要为全文索引启用的表的数据库. 2.右键单击要启用全文索引的表. 3.选择全文索引",然后单击启用全文索引". 参考: msdn.microsoft/en -us/library/ms142536(v = sql.90).aspx [ ^ ] 否则尝试以下方法: To enable a table for full-text indexing 1. Expand the server group, expand Databases, expand User Databases, and expand the database that contains the table you want to enable for full-text indexing. 2. Right-click the table that you want to enable for full-text indexing. 3. Select Full-Text index, and then click Enable Full-Text indexing. Ref.: msdn.microsoft/en-us/library/ms142536(v=sql.90).aspx[^] or else try this: sp_fulltext_database "enable"; CREATE FULLTEXT CATALOG [myFullText] WITH ACCENT_SENSITIVITY = ON CREATE FULLTEXT INDEX ON [dbo].[tblName] KEY INDEX [PK_something] ON [myFullText] WITH CHANGE_TRACKING AUTO ALTER FULLTEXT INDEX ON [dbo].[otherTable] ADD ([Text]) ALTER FULLTEXT INDEX ON [dbo].[teyOtherTable] ENABLE<

更多推荐

全文搜索安装

本文发布于:2023-10-18 23:49:34,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1505783.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:全文

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!