Getting Started with Adobe After Effects - Part 6: Motion Blur
A collection of quick technology learning tips from what people around you learn every day

Adding and removing STOPLIST to Fulltext Index in SQL Server

Aug 18 2011 5:56AM by Paresh Prajapati   

After learning tips to create stoplist and adding/removing stopwords to fulltext index, let's learn about applying custom stoplist to fulltext index.

Below query will add stoplist SL3 to fulltext index on table.

 
-- Applying custom stoplist to Fulltext Index
ALTER FULLTEXT INDEX ON YourTableName  
SET STOPLIST SL3
GO

Below query will remove custom stoplist from fulltext index by applying system stoplist back.

 
-- Applying systm stoplist to Fulltext Index back
ALTER FULLTEXT INDEX ON YourTableName
SET STOPLIST SYSTEM
GO

You can read the previous tips to creating stoplist(http://beyondrelational.com/justlearned/posts/545/custom-stoplist-for-fulltext-index-in-sql-server.aspx) and adding/removing noise wrord to stoplist(http://beyondrelational.com/justlearned/posts/548/adding-and-removing-noisewordsstopwords-in-stoplist-of-fulltext-index-sql-server.aspx) for fulltext index.

Read More..   [0 clicks]

Published under: SQL Server Tips ·  ·  ·  · 


Paresh Prajapati
6 · 22% · 7054
2
 
0
Knew
 
 
0
Incorrect
 
0
Interesting
 
0
Forgotten



Submit

Your Comment


Sign Up or Login to post a comment.

"Adding and removing STOPLIST to Fulltext Index in SQL Server" rated 5 out of 5 by 2 readers
Adding and removing STOPLIST to Fulltext Index in SQL Server , 5.0 out of 5 based on 2 ratings
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]