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 > february 2007

How to store the value of a particular column of result grid displ
Posted by Rajesh Nagpal at 2/26/2007 4:18:05 AM
Hello All, There is a stored procedure sp_fulltext_service which takes the property to be changed or reset and the value of the property as the parameters. sp_fulltext_service [ [@action=] 'action' [ , [ @value= ] value ] ] If value is NULL, sp_fulltext_service returns the current setting...more >>


What is incremental?
Posted by Ian Boyd at 2/23/2007 3:44:34 PM
Reading the MS article "10 Ways to Optimize SQL Server Full-Text Indexing" http://msdn2.microsoft.com/en-us/library/aa175787(sql.80).aspx It says regarding a full population: "MSSearch will issue sp_fulltext_getdata once for every row in your table. So if you have 50 million rows in you...more >>

Freetexttable Not Finding Inflectional Forms
Posted by Krip at 2/22/2007 4:48:51 PM
We're using SQL Server 2005 service pack 1. It was my understanding that FreeTextTable automatically includes inflectional forms. We're not able to get any inflectional forms of words during the search (even if we use Contains with the special syntax). Are we missing something in the server...more >>

freetexttable query continued
Posted by geek-y-guy at 2/21/2007 2:02:45 PM
Still working on this query: select * from products inner join freetexttable(products,*,@searchstr) ft1 on ft1.[key] = products.p_id left join sku on sku.p_id= products.p_id inner join freetexttable(sku,*,@searchstr) ft2 on ft2.[key] = sku.sku I replaced the inner join with a ...more >>

FTS - avoid full rebuild question
Posted by eaper66 NO[at]SPAM gmail.com at 2/20/2007 1:20:36 PM
Hello All. We are having a performance problem with our FTS (running on Sql Server 2000 Std vs a MS Commerce 2002 FP1 website. All running on Server 2003 OS. SQL and webserver are on different machines). Once the re-population is complete, the FTS runs fine. Each week, we add new items v...more >>

another Freetexttable query problem
Posted by geek-y-guy at 2/20/2007 11:25:45 AM
Hi All: Last month, I was looking for way to query 3 FT tables simultaneously. I found that a UNION with 3 separate queries worked, but someone pointed out that duplicates would occur (and they did). It was suggested that I use a query like: select <columns> from table1 in...more >>

Fulltext search miss records in select
Posted by Henrik Juel at 2/19/2007 6:03:09 PM
Running SELECT productid,productname from productsFullText where freetext (*, 'x2000') or SELECT productid,productname from productsFullText where contains (*, 'x2000') gives 1 hit. SELECT productid,productname from productsFullText where productname like '%x2000%' gives 7 hi...more >>

Searching within words - alternative?
Posted by at_the_gonq NO[at]SPAM hotmail.com at 2/16/2007 12:42:32 PM
Hi guys, I have been writing a search engine that uses FTI, and have read that you cannot use leading wildcards in your search clause (i.e. "*ome" would not return home, but "hom*" would return home). Just wondering if there is a solution to this problem while still using CONTAINSTABLE & FT...more >>



Finding 'C' as a programming language...
Posted by Kyle Jedrusiak at 2/15/2007 10:32:17 AM
I'm not sure what I did generates the correct result...I think I got the information here but I don't remember as it was a few years ago. I edited the noise-ENU file and removed the letter C from the last line. Then I did rebuild on the indexes. It almost seems like it worked...but I have ...more >>

sql schedular and jobs
Posted by ARPREET via SQLMonster.com at 2/14/2007 4:26:28 AM
I just upgraded from msde to sql express and need a way to run my existing jobs. I tried sqlschedular but dont seem to get it to work. How can I access or run my existing jobs. Help is appreciated -- Message posted via http://www.sqlmonster.com ...more >>

Help with returning too much data
Posted by Mike Collins at 2/13/2007 1:09:01 PM
I am running the below query and getting back results that have the word "mode" in it. Isn't the keyword CONTAINS supposed to treat my search expression as one word? Can someone show me what is wrong with this query so that it returns only records that have the exact search expression "mode-4"...more >>

Best match text search
Posted by ARPREET via SQLMonster.com at 2/13/2007 2:22:03 AM
Does the new text search method in SQL Server provide a “best match” text search? Does it work similar to a Google search, for example, where the most words that match gets the highest relevancy score, then these should appear first. I wondered if the new text search provided a accuracy/relev...more >>

Full Text Search Problem
Posted by monu at 2/11/2007 11:16:21 PM
Hi, I'm new to this group, i've a problem with the full text search with sql server 2000, I've been searching for a word (say "the") in the a full text indexed table for each column and i get the error as : "Run-time error '-2147217900(80040e14)': A clause of the query contained only ign...more >>

full text search with language other than english(ex chinese, japanese)
Posted by admin.onQhk NO[at]SPAM gmail.com at 2/10/2007 9:20:51 PM
I have set up a full text search to handle multiple columns searching for chinese But the result of the search isn't really what i have expected. I have setup the catalog to have a chiense word break, and the columns in the tables are all nvachar when i do something like select * from ...more >>

No more indexing on text
Posted by Larry Brown at 2/9/2007 2:55:18 PM
Hello, I store text files into an SQL Express DB, in a varbinary field. I have change the naming of some columns in my indexed DB, and I have changed the indexed column: now, I have two varbinary(max) columns in my table, one is indexed but not the other. All my files are text. It appea...more >>

T-SQL Help
Posted by ARPREET via SQLMonster.com at 2/9/2007 1:11:57 AM
My sql below returns like 10,000 records and takes like 22 seconds. Is this normal or can I tune it to run faster. SELECT s.story_id, spec.title as title, s.title AS story_name, CONVERT(char(10), u.air_date, 101) AS rundown_date, '' AS video, '' AS cg_text,i.text AS item_text, i.type, i.con...more >>

keywords context summary
Posted by xke at 2/8/2007 8:44:21 PM
I use fts to query a sql server 2005 db and the results are displayed on a web page. Out of a large text how can a summary be extracted "including" also my keywords? Like more contextual summary. google has a fancy way of formating the search results and display a keyword contextual descrip...more >>

Index on 4 columns does not return results in expected order
Posted by Kenny at 2/8/2007 9:14:04 AM
We have a Full Text Index on 4 columns and it doesn’t return the results in the order we think it should in 2000 or 2005. In 2005 I created a persisted calculated column of these 4 columns and created the Full Text Index on it and I returned the results in the order I expected them. In my ...more >>

can't move file for full-text index
Posted by Panos Stavroulis. at 2/7/2007 3:31:01 AM
Hi, I need to move the file for my full-text catalog to a different drive due to space issues. I've tried the following: ALTER DATABASE mailarchivedec05 MODIFY FILE (NAME = MailArchiver3, filename = 'F:\FTDATA') But get an error: Server: Msg 5037, Level 16, State 1, Line 1 MODIFY ...more >>

field in an embedded sql
Posted by ARPREET at 2/6/2007 5:16:44 PM
I added full text indexing on the title field in a table but when i reference the same field in an embedded sql it says cannot use contain on a field that is not full text indexed. example SELECT top 400 s.story_id, u.title, s.title AS story_name, u.state, CONVERT(char(10), u.air_date, 101)...more >>

MultiColumn Full Text Search and Replace
Posted by Barry Prentiss at 2/6/2007 2:21:17 PM
Hi, I am new to Transact SQL and am trying to concoct a full text search across multiple columns of a single table, and then replace the found text with a new string. Some of these ntext columns have multiple strings separated by 'special characters' (i.e. carriage return). This seems li...more >>

Full Text on Company Names
Posted by AndyNY at 2/5/2007 1:51:18 PM
I am using full text on a colum of company names. My question is what is the best way to full text search names when a lot of them have apostraphes such as Dave's Hardware or Tony's Plumbing? Should I create a column that doesn't have apostraphe's using replace() and make that my full text ...more >>

FTS Cluster Setup
Posted by AF at 2/5/2007 10:33:41 AM
I have an existing SQL 2000 Cluster setup and would like to add Full Text search to it. Is there any specific doc or best practices for this configuration? I have started the install once but the only option was to uninstall SQL Server. Do I run ftsetup.exe instead? ...more >>

CONTAINSTABLE and wildcard inconsistency
Posted by edwaldo at 2/4/2007 8:11:00 AM
I have a table in Sql Server 2000 with full text indexing setup on a column called 'contents' with a datatype of Text. The column contains HTML, and I want to search for a particular link eg. <a href="/hm/default.aspx?i=40559#secure"> ...by using the following phrase: /hm/default.aspx?...more >>

Does indexing on IMAGE fields work?
Posted by Spicy Mikey at 2/3/2007 12:55:09 PM
I am doing some prototyping using FTS in SQL 2005 Standard and am having serious problems getting searching to work when using IMAGE or VarBinary(max) fields. The index sortof works when using varchar fields. The only problem with varchar is that it doesn't seem to always auto popluate when ...more >>

Full Text Indexing Option Disabled
Posted by Ian Boyd at 2/3/2007 12:31:44 AM
i, like hundreds of other people, am unable to use the Full Text indexing feature because of the bug in SQL Server Enterprise Manager that disables the ability to configure it. See the Microsoft Knowledge Base article, but realize that it doesn't apply. http://support.microsoft.com/?kbid=270...more >>

Confusion: "Manual", "Incremental", "Update"
Posted by Leila at 2/2/2007 11:48:33 PM
Hi, I'm using SQL Server 2005. What's difference between mechanisms of "Manual" update and "Incremental" population? I also need some clarification about "Update" type of population. Thanks in advance, Leila ...more >>

Creating index - Error 229 (Permission denied)
Posted by tlchurch NO[at]SPAM gmail.com at 2/2/2007 5:58:36 AM
I have been working with my DBA and have not yet found the issue. I have my development database on a SQL Server 2005 server. I enabled it for full-text catalogs and created a catalog with no issues whatsoever. When I go to create the index, however, I run through the wizard (using SMS) until ...more >>

FT index doesn't auto populate
Posted by Spicy Mikey at 2/1/2007 1:33:02 PM
I have to start by saying I'm new to FTS in SQL Server and could be doing something stupid. However, everything I've read so far contradicts what I'm seeing. Here's the issue; I setup an FTS index in the Adventureworks DB using the Address1 field in the Address table to query against some...more >>


DevelopmentNow Blog