Psst! Did you know DevelopmentNow is a mobile web site design agency?

Contact us for help mobilizing your site, or to sign up for our beta Mobile Web SDK!


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
all groups > sql server full text search > december 2005

Where can I find a list of word breakers?
Posted by Jim Sneeringer at 12/30/2005 5:50:01 PM
I need to parse the user's queries to but them in the format required by SQL, and in order to get correct results, I need to know what characters SQL considers to be word breakers. I am using US English...more >>


sql server fulltext query results
Posted by Dirk at 12/30/2005 12:55:00 AM
Is there a way to avoid wordbreaking functionality when performing a fulltext query in a german SQL Server 2000 on a Win Server 2003? Example: when using ... CONTAINSTABLE([column], "'posthorn'") ..., my resultset contains records containing "postfrisch" and "posthorn" because (I think) of the...more >>

Procedure sp_fulltext_database
Posted by Dimitri at 12/27/2005 11:51:58 AM
Server: Msg 7635, Level 16, State 1, Procedure sp_fulltext_database, Line 46 The Microsoft Search service cannot be administered under the present user account Does anyone know how to fix this problem? The services are started under localsystem How to enable administration of ms search?...more >>

Office Document Properties
Posted by Steve W at 12/22/2005 5:14:50 PM
If I use the Indexing Services built into the OS, I can query the office doc properties (title, author etc). Is it possible to do this if I have an office doc stored in an Image field that is full-text indexed ? Steve ...more >>

Zero Ranking
Posted by Steve W at 12/22/2005 9:27:31 AM
Hi, I am using SQL Server 2000 to store a number of small Word documents in an image field that is being FT indexed (table name 'docs', image field name 'document', also have a column 'title' containing the name of the document). The docs look like this : Doc1 : The red apple is juicy ...more >>

Fulltext index for 2 columns in one table
Posted by Lekshmi at 12/22/2005 4:55:02 AM
Hi All, I have a table and a full-text catalog. The table is assigned to the catalog and index on description. Now I have to add one more column to this existing table called 'tilldescription'. The table will have 6-7 lakhs of data and I have to search using this tilldescription. I thought ...more >>

Full text matching and quotes
Posted by Brian Kitt at 12/21/2005 12:56:03 PM
I have data in my full text column such as "men's shoes". When a user does a search such as "mens shoes" it does not return a match, because the user data does not contain the quote. If they search on "men's shoes" then it works properly. Anybody run into this and have ideas about how to ...more >>

"Full-Text Index Table" is disabled?
Posted by Dave at 12/15/2005 11:16:04 AM
I'm trying to do some local development so I installed Full-Text Indexing as part of the SQL 2000 Developer Edition on my Windows XP machine. The MS Search Service is running but the option is still disabled in EM when I right-click on a table. Thanks, Dave....more >>



Sql Server 2005 Full Text Indexing on Sql Server 2000 compatible databases?
Posted by Ben Fidge at 12/14/2005 4:49:46 PM
Can anyone confirm whether Full-Text Indexing can be setup on a Sql Server 2000 compatible database running under Sql Server 2005? Thanks Ben ...more >>

Problem with Full-text searching
Posted by Andrew at 12/14/2005 8:02:09 AM
I am getting this error message from SQL Server when attempting any full-text catalog operation: Error 7619: Execution of a full-text operation failed. The parameter is incorrect. The service appears to be installed and running on Windows 2003 Server and the error appears to be coming fr...more >>

Difference between indexing txt or word doc files, help!
Posted by Jim Florence at 12/13/2005 9:36:15 PM
Hi, I'm putting together a system and one of the requirements is to have a searchable CV function. I've got all the code to load the files on to the image fields, I've indexed and got it kinda working. Before I go to far down the road what is your opinion on having txt files instead of d...more >>

1.2G Catalog file (and climbing)
Posted by Chris at 12/13/2005 6:52:01 PM
Platform = Intel 3.0G 4-way duel core (+ hyper-threading makes 16 CPU) running Win2003 AS - SP1 SQL Server 2000 (can't go to 2005 yet). 135G DB without catalogs - which are on a Raid 1+0 external drive via fiber (12 spindles). 1) I need to improve performance of full-text catalogs of a ...more >>

SQL 2005 Full Text Multi-Column Ranking
Posted by craig_at_rampgroup_dot_com at 12/13/2005 6:18:39 PM
I looked all over the internet and can't find a straight answer, so hopefully someone here will know the answer for a fact. Question... Can the rank values of multiple containstable queries in different columns be compared to each other in order to achive a cross column ranking? If not, how...more >>

Full text search and SQL Server Express
Posted by Mats Lycken at 12/10/2005 3:54:56 PM
Hi, I'm using SQL Server Express for a project that I'm working on which would really benefit from having full text search abilities. As I understand it this isn't possible with the current release of SQL Server Express. I read on this page from msdn (http://msdn.microsoft.com/library/defau...more >>

Wordbreakers and Hyphens
Posted by Arthur Dent at 12/8/2005 1:01:52 PM
Hello all, i have a freetext on a client's product catalog which allows customers to search all through the product names/descriptions/marketing text/info points etc. One problem creeps up though, which when googled is shown to be a common thing. Some products have hyphens in their names, e...more >>

Need help with a query ....
Posted by Griff at 12/8/2005 12:37:36 PM
I have a database table 'epda' that has a full text catalogue on it. The field of interest 'epd' contains two rows of interest. The first row has the following example text: 'This is some text and x73 is the value' The second row of interest has the following example text: 'This i...more >>

Rank question
Posted by Kevin at 12/8/2005 8:02:08 AM
I am running the following select statement: select * from client inner join freetexttable (client,clname,'"General Mills"',2) as key_tbl on client.clnum = key_tbl.[key] data: General Investment & Securities Co. General Mills Inc. Smith Mills, Inc. It returns: General Investment with ...more >>

"query contained only ignored words "?
Posted by mizi at 12/7/2005 1:00:21 PM
When I try to search a word by an ASP web page, it returns error '80040e14 , The query contained only ignored words'. I know the question maybe asked for many many times and I do search the Internet but cannot find the answer right for me. I use Windows 2003 SP1 and SQL server 2000, all are...more >>

sql 2005 fulltext performance
Posted by erdem at 12/7/2005 9:45:16 AM
hi, We have upgraded our sql server 2000 to sql server 2005. we have some serious problems about full-text search performance. What can we do about fulltext-search to speed it up ? what have been chanced from sql server 2000 in full text search. Thanks in advance Erdem KEMER ...more >>

WSS, SQL 2005 and Full Text Search
Posted by John Galt at 12/7/2005 6:16:16 AM
I am having a problem getting SharePoint Service to acknowlwdge that Full Text Search is enabled. I upgraded the SharePoint MSDE database as documented without any problems, but when I go into SharePoint Admin section is says "The database this server is using does not support search." Accordi...more >>

mssearch.exe has high CPU usage
Posted by Steve at 12/7/2005 12:42:24 AM
Hello- Normally our mssearch.exe CPU is less than 5% even at peak times, and falls to 0 at night. But for the last few days mssearch.exe CPU usage remains close to 25% even when all the catalogs are idle and search queries are very infrequent. This happened a few months ago, and was fixed onl...more >>

how to compare data of text type?
Posted by chemInformatic at 12/6/2005 4:23:28 AM
We can't use the term "=" to compare the data directly ,of which type is text or ntext. Are there other good ideas to get the exact matchs? ...more >>

how to add support for russian language to Full Text search?
Posted by vlad at 12/5/2005 4:48:31 PM
Hi all. I'm using MS SQL Server 2K SP3. I need to implement full text search in Russian. Now if I execute smth like: Select id_article From Articles Where FreeText (*, N' some words in russian ') I get an error: Server: Msg 7619, Level 16, State 1, Line 1 Execution of a f...more >>


DevelopmentNow Blog