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 NoiseWords/StopWords in STOPLIST of FULLTEXT Index - SQL Server

Aug 17 2011 7:08AM by Paresh Prajapati   

As i have posted a tip to create a custom stoplist for fulltext indexes in SQL Server, http://beyondrelational.com/justlearned/posts/545/custom-stoplist-for-fulltext-index-in-sql-server.aspx. Here i am going to submit a tip as how can we add or remove stopwords/noisewords in that stoplists. Below are queries are used to add and remove stopwords in/from stoplists accordingly.

-- Adding "stop" word as a stopword to stoplist
ALTER FULLTEXT STOPLIST SL3
ADD 'stop' LANGUAGE 'English'
GO

-- Removing "stop" word from stoplist
ALTER FULLTEXT STOPLIST SL3
DROP 'stop' LANGUAGE 'English'
GO
Read More..   [0 clicks]

Published under: SQL Server Tips ·  ·  ·  · 


Paresh Prajapati
6 · 22% · 7102
3
 
0
Knew
 
 
0
Incorrect
 
0
Interesting
 
0
Forgotten



Submit

Your Comment


Sign Up or Login to post a comment.

"Adding and Removing NoiseWords/StopWords in STOPLIST of FULLTEXT Index - SQL Server" rated 5 out of 5 by 3 readers
Adding and Removing NoiseWords/StopWords in STOPLIST of FULLTEXT Index - SQL Server , 5.0 out of 5 based on 3 ratings
    Copyright © Rivera Informatic Private Ltd Contact us      Privacy Policy      Terms of use      Report Abuse      Advertising      [ZULU1097]