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 > january 2005

FreeTextTable on image column of document metadata
Posted by Jeremy at 1/31/2005 4:36:47 PM
I would like to be able to search the metadata of files (e.g. Title, Keywords, etc) that I have stored in a database. I have included the "metainfo" column (image) in the full-text catalog. Running a freetexttable on the documents table returns matching results for web pages (.htm, .aspx), howe...more >>


Adding Full-Text Search Indexing to a Cluster
Posted by jay.griffin NO[at]SPAM burke.com at 1/31/2005 3:03:39 PM
Ihave an Active/Passive Cluster. Can someone point me to a Technet article or provide the steps for adding Full-text indexing? I can't seem to find one! Thank you. Jay ...more >>

Search Performance
Posted by Shabam at 1/30/2005 6:46:51 AM
I have a web application coded in dotnet and ms sql server. It is a multiuser system that lets members search for other members via their profile fields. It gets complicated in that it lets users search based on distance from a zip code, as well as degree of separation. However every time I ...more >>

noise words, @@ERROR, and stop and resume indexing
Posted by Perre Van Wilrijk at 1/28/2005 2:32:03 PM
Hi, I'm FTS newbee, and have some questions 1) check noise words inside stored procedure 2) @@Error fails 3) The best way to stop and restart indexing 1) Just found out that this error Server: Msg 7619, Level 16, State 1, Procedure usp_ft, Line 2 A clause of the query contained only ...more >>

Special Characters in FullText Query
Posted by Marcus Baffa at 1/27/2005 12:19:04 PM
I have create a Catalog and I am trying to find a record in the database that satisfies the term: 102/3 or 102-3 These two terms works exactly the same way. The SQL searches for records that have 102 or 3 in any position in the record, including in the middle of a word. I have concluded ...more >>

Performance Question
Posted by Joe Zammit at 1/27/2005 9:43:45 AM
Hi All I have a database of students which contains a table StoredCvs. This contains all of their CVs (Resume's) and has a full text index stored in a "StoredFilesCatalog". It is unlikely that this table will grow to more than 1 million rows although it is possible. I now want to start stor...more >>

Ignore Next Char
Posted by Esref DURNA at 1/27/2005 9:15:05 AM
Hi, when i m searching with contains I want to ignore a character inside the keyword, Like Es(ignore next char)ref --> Es?ef will return the results Esxef , EsHef Estef Eskef also thanks for your help from now. -- Esref DURNA ...more >>

CONTAINS with *
Posted by msnews.microsoft.com at 1/27/2005 3:01:15 AM
Hi, I read in MSDN that If the text and asterisk are not delimited by double quotation marks, as in CONTAINS (column, 'text*'), full-text search considers the asterisk as a character and will search for exact matches to text*. However.... I have this code: If chkOptions.Items(1).Sele...more >>



FreeTextTable Rank
Posted by msnews.microsoft.com at 1/27/2005 1:02:51 AM
Hi. I have a question - does anyone know on what criteria is the rank set by FreeTextTable ? I created some records in the table "titles" containing the words "drink", "much" and "abstinence" and.... well.... I can find no rhyme or reason to the way this rank is established. I got the ranks 29...more >>

DBCC CALLFULLTEXT
Posted by Carl Henthorn at 1/26/2005 3:17:09 PM
where can I find documentation on DBCC CALLFULLTEXT? I cant find any on the net. I am trying to find out if my index is set to auto populate. thanks!...more >>

FreeText on multiple columns
Posted by dotNet at 1/26/2005 11:30:47 AM
Hello! I need to do a freetext-search on multiple columns in the same table, searching with the same keywords. For example WHERE FREETEXT({col1, col2}, "searching for this") I know that this can be accomplished through WHERE FREETEXT(col1, "searching for this") OR FREETEXT(c...more >>

Hello
Posted by msnews.microsoft.com at 1/25/2005 11:17:31 PM
How do I start the Search Service on my SQLServer 2000 on winxpsp2 ? I have installed it, but in the Service Manager I see only DTC OLAP SERVICE SQL Server SQL Server Agent I read that I should see an etry named "Search Service" in the Service Manager. In Enterprise Manager if I rig...more >>

Concatenate String and Pass to FORMSOF?
Posted by HumanJHawkins at 1/25/2005 7:37:29 AM
The following query works perfectly (returning all words on a list called "Dolch" that do not contain a form of "doing"): SELECT 'Dolch' AS [List Name], dbo.Dolch.vchWord FROM dbo.Dolch LEFT OUTER JOIN dbo.CombinedLexicons ON CONTAINS(dbo.Dolch.vchWord, 'FORMSOF(INFLECTIONAL, "d...more >>

Duplicates in result set
Posted by Michael D. at 1/24/2005 2:41:03 PM
I have a simple FT query SELECT PK,TEXT_DATA FROM TABLE WHERE CONTAINSs(TEXT_DATA,'"search1" and "search2"') I get duplicates in the result set, despite the fact that no duplicates of the PK,TEXT_DATA exist in the table... Is this an indication that the FT index is corrupt ??? Any...more >>

Ignore table lock with CONTAINSTABLE
Posted by flaignel NO[at]SPAM yahoo.fr at 1/24/2005 1:39:43 PM
Hi, Is there a way to ignore table locks when using the CONTAINSTABLE statement ? Here is a code sample : SELECT [KEY], RANK FROM CONTAINSTABLE(MyTable, *, 'MySearchTerm') as S, MyTable WITH(NOLOCK) WHERE MyTable.ID = S.[KEY] This query cannot return results when there is a lock on "MyT...more >>

Full Text Indexing Error
Posted by David McKenzie at 1/24/2005 11:39:05 AM
I see a lot of these in my Event log on the SQL Server for my Windows Sharepoint Services site. It would be nice to know what files are not being indexed and why. Posting in the WSS group got me advice to update to SQL Server SP3 (done at install) and/or post here. Event Log Messages: One or...more >>

Full Text Search Failed for the word 'is'
Posted by narayananst at 1/24/2005 5:19:03 AM
I am implementing a full text search. When I search for the word 'is', it is giving a wrong result. I need the help to solve this problem....more >>

inflectional causing "query contained only ignored words" error
Posted by Tony Vargas at 1/21/2005 8:29:04 AM
Hi I am receiving the error "query contained only ignored words" from the word "best" that is not in the ignored words list. While researching the problem online I found the following link: http://www.dbforums.com/archive/index.php/t-965368.html In the post the poster states this is ...more >>

Storing large documents in SQL Server
Posted by (ananthapus NO[at]SPAM hotmail.com) at 1/21/2005 8:11:47 AM
Hi, We are debating whether it is a good idea to store large documents (on the average over 100 MB - max size currently at 220 MB) in SQL server itself OR to strip the document of the "noise" words outside of sql server and store just the words we need to be indexed. We are concerned about t...more >>

NEED HELP!! SQL Merge Replication
Posted by (tony.digiorgio NO[at]SPAM immedient.com) at 1/19/2005 1:02:47 PM
I have a merge replication process that is having some major performance issues. The replication process seems to run just fine for about a half hour (200k records), and then it hits a brick wall. I continually get the message: "The process is running and is waiting for a response from one of t...more >>

Question on IFilters
Posted by (ananthapus NO[at]SPAM hotmail.com) at 1/18/2005 12:30:14 PM
Hi, Are the Ifilters COM/CORBA objects that I could call from my code? I'm trying to find out whether I could call them in my java code to extract text from various document formats such as PDF/MS Office etc before storing them to the database. The documents that we are looking for full text se...more >>

search all tables in DB for "your name"
Posted by QUADE at 1/18/2005 7:29:01 AM
Hi I want to search all the tables and columns in a database for a specific piece of text Just need to do it in query analyser, can anyone help with the script, done a web search with no results dont care about performance as its a one off cheers mark...more >>

Full-text indexing and Windows 2003 Server
Posted by Sergey Khanzhin at 1/17/2005 12:29:03 PM
After upgrading to Windows 2003 Server full-text indexing has stopped response. I have created full-text catalog and have populated it but in EA the status of catalog remained "Population in progress". This status is not changing for a long time (I tried to wait for more than one day and it ...more >>

Searching for "c#" and ".NET"
Posted by Kyle Jedrusiak at 1/17/2005 12:02:09 PM
We're using sql server v 8.00.760 (SP3). We have imported resumes into a table and have full-text search working. What is the proper syntax to search for "c#" or ".NET"? Kyle! ...more >>

Full-Text Indexing Filetypes
Posted by (terickson NO[at]SPAM minitab.com) at 1/17/2005 6:49:43 AM
Hello, I've searched high and low for the answer to this, but to no avail yet...and I don't think it's possible...but does anyone know of any filters available for Microsoft Publisher (.pub) files or Web archive (.mht) files? We're in the process of implementing SharePoint Portal Server 2003 alo...more >>

FTS does not index htm file in image column
Posted by paul.craigie NO[at]SPAM gmail.com at 1/17/2005 6:28:55 AM
Hi, I have FT indexing set up on an image column, the column is binded to a document type column and the FT indexing works fine. My problem is that when a html file has the following utf-8 metatag <META http-equiv=Content-Type content="text/html; charset=utf-16"> then the FT searches do not w...more >>

unmatched result
Posted by James Lau at 1/14/2005 12:50:16 PM
Hi, I have 2 database with same data and structure running on 2 different machine on sql2000 sp3. However, the full-text search come out with different result set. Any idea to fix the problem. Thank you in advance for all your help. James ...more >>

FullText Search data model for speed
Posted by Kuido K?lm via SQLMonster.com at 1/13/2005 3:47:51 PM
Which method is faster for full-text search One row big varchar field comment VARCHAR(1000) on lots of small varchar fieds like 10 rows comment VARCHAR(100) -- Message posted via http://www.sqlmonster.com...more >>

Full Text Max Size?
Posted by Charlie Pyne at 1/13/2005 1:09:24 PM
Hi, Does anyone have experience with Full Text catalogs on large tables? We have a full text catalog on a table with about 30 million rows. Acording to BOL, once you get over 1 million you'll need to make some adjustements. Our system works, but often we get the following errors with ad hoc...more >>

Problems when using TOP statement
Posted by Henke at 1/13/2005 11:38:46 AM
Hi! I have a query that takes about 3 seconds to process. When I add TOP 20 to reduce the number of hits the same query takes 18 seconds. Is this a correct behaviour? /Henke ...more >>

Proper Nouns
Posted by Fin D at 1/11/2005 2:01:03 AM
Hi All, We are using a FORMSOF(INFLECTIONAL) query and trying to establish why we get results returned for a search on "Luke" but no results for "Lukes"? Whereas "Rebuke" and "Rebukes" returns the same number of results. Is there a dictionary or similar that we can add to to ensure that pl...more >>

New to SQL server full text search
Posted by (ananthapus NO[at]SPAM hotmail.com) at 1/10/2005 1:07:55 PM
Hi, I'm trying to install MS SQL server 2000 full text search. I have two questions: 1) Many of the documents are scanned images wrapped as PDF files. Do I need to install Adobe IFilter to index these documents? 2) Some of these documents are 160MB in size. Would MS SQL server be able to...more >>

Indexing image - file size limit?
Posted by nospamforjoel NO[at]SPAM yahoo.com at 1/10/2005 7:32:00 AM
According to the Books Online information on full-text indexing, there are limits on the size of a file that can be indexed in an image column: 16MB filesize, 256 KB of filtered text. I've exceeded those limits in my testing (with Word docs), and still appear to be able to access information in ...more >>

Data Matching
Posted by Mohamed Zaki at 1/9/2005 7:24:32 PM
Dear All, Firstly I know my question may be not perfectly fit in this newsgroup, but I hope I find some assistance or guidance, we have the customers data in different 3 systems (CRM,ERP, another Custom developed system) , we are now going to assign a unique customer id across all these ...more >>

Fulltext search won't repopulate when running on batteries
Posted by ajfish NO[at]SPAM blueyonder.co.uk at 1/9/2005 2:19:28 AM
Here's one that had me stumped for a good couple of hours. While working on my laptop, I was trying to rebuild a fulltext search catalog. I tried numerous times repopulating, deleting and rebuilding. whenever I tried to start it populating, I got messages in the event log saying the crawl had ...more >>

Full-Text Installation Problem
Posted by George at 1/8/2005 11:13:01 PM
I am having a problem with SQL Server 2000 Developer Version and Microsoft Search on Windows XP. Microsoft Search did not appear in SQL Server Service Manager. I ran SQL Server 2000 setup and found that the Microsoft Search component was not installed so I installed it. I am not sure how that ...more >>

indexing image columns
Posted by lucas at 1/8/2005 3:20:42 PM
Hi, I'm building a search engine for a website using sql server 2000 (sp3). My development invironment is Windows XP Pro and the production server is Windows 2003, and I'm getting the same problem on both machines. I have two tables in the cataolg, one contaning only text fields (varchar a...more >>

MSSearch without SQL Server
Posted by thomas.stryger.olsen NO[at]SPAM gmail.com at 1/7/2005 7:17:09 AM
We are using MSSearch via SQL Server to perform free-text searches. However, we would rather not store the entire raw text in the SQL Server. So is there a way to use the MSSearch service outside the context of SQL Server? In other words, to populate MSSearch directly with free-text, let it b...more >>

Freetext Search - SQL CONTAINS (column,"R-483*") FAILS
Posted by filip NO[at]SPAM lac.gda.pl at 1/7/2005 4:14:12 AM
Hi I would like to search for "R-483" phase using SQL CONTAINS function : DECLARE @i_FreeText Varchar(255) SET @i_FreeText= '"r-483*"' SELECT TOP 10 * from iBlockFreeText where (@i_FreeText is null or contains(iBlockFreeText.Content, @i_FreeText)) , but it fails. It's oka...more >>

Problem Transact-SQL Statement
Posted by Allen Yu at 1/7/2005 12:54:25 AM
I've come across a Transact-SQL statement as follows: -- Statements start here select 'EXECUTE sp_changeobjectowner ''' + name + ''', ''dbo''' from sysobjects where type = 'U' -- end here Questions: (1) How should the 'select' statement be interpreted? (2) What are the rules for u...more >>

Full text Search
Posted by (ananthapus NO[at]SPAM hotmail.com) at 1/5/2005 8:50:13 AM
Hi, I'm in the process of implementing a full text search service using MS SQL server 2000. Can anyone point me to some materials, books/websites that I could browse before I start my work? Appreciate your reply. Anantha **************************************************************...more >>

Character Problems
Posted by Esref DURNA at 1/5/2005 7:05:02 AM
The spesific characters of turkish alphabets ->>iğüşöç couse problems while searching in the Fulltext search. The letter ı is "I" in the uppercase in our alphabet which is equal to the English letter "I" The the other lets does not exists in english alphabet. so the turkish letters alway...more >>

Adding PDF indexing with Sql Server 2005
Posted by Steven Paplanus at 1/3/2005 10:56:59 AM
I am trying to use the full-text indexes with Sql Server 2005, and wanted to index pdf files. I have downloaded and installed the Adobe PDF iFilter from Adobe, and have tested it using the iFiltTst on a directory with PDF files. It does index the pdf files. I then moved the files into a sq...more >>

Set up FTDATA on Failover Clustering
Posted by Maggie at 1/3/2005 10:35:03 AM
Plat form: Windows 2003 enterprise ed, SQL Server 2000 Failover Clustering SP3A enterprise ed. Action: How to change the default location for full-text indexing search by using TSQL/SEM on failover clusterng environment ? For SQL Server default installation, we have default the locations...more >>

Text Search IGNORING Certain Characters
Posted by Alex Maghen at 1/1/2005 9:55:10 AM
I'm not sure that "sqlserver.fulltext" is the right group for this posting. I have a table with 3 unicode text columns, English, Hebrew, and Farsi respectively. I want to write a query where the WHERE clause does a "... like '%<searchtext>%'..." on each of those columns. Here's my problem:...more >>


DevelopmentNow Blog