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

how to delete reference to fulltext catalog
Posted by mattmerc NO[at]SPAM bellsouth.net at 1/30/2006 1:01:38 PM
Looks like I made a mistake I hope someone can help me with. I backed up a SQL database that implements fulltext catalogs. I thought these would be included in the backup...I was wrong. Not a problem to recreate the catalogs except that the database still shows the references to the old ones. It...more >>

corrupt full text catalogs -- can't delete!
Posted by mattmerc NO[at]SPAM bellsouth.net at 1/30/2006 12:24:06 PM
I made an ameteur mistake moving my sql database. I have 5 full-text catalogs and I thought they would come with the backup...well, they didn't. Now, in Enterprise Manager, under full-text catalogs, I can still see them. I cannot delete, rebuild, or do anything with them though because I get a...more >>

Ignored words error strangeness
Posted by Matt Jensen at 1/30/2006 12:00:00 AM
Howdy I've got 2 databases on the same SQL server with full text indexes on the columns of tables, and one when I do a full text search on with a noise word eg 'a' it returns results with a in it, and the other one gives the 'ignored words' error. When I do sp_help_fulltext_columns on th...more >>

Text field in a group by, how can I make it work?
Posted by ThunderMusic at 1/27/2006 10:14:48 AM
Hi, I need to do a sum this way : Select Field1, Sum(Field2) as sumField2 From Table1 Group By Field1. I think the syntax is correct, but the problem is that Field1 is of type Text (and not varchar). So I receive an error telling me I can't "group by" with a field of type "Text". Is there a w...more >>

Advantages?
Posted by Bil Click at 1/26/2006 11:06:02 AM
I would welcome opinions on whether FTS would help in our scenario. The table has about 28 million rows and has about 10,000 rows added every morning in an intensive batch process. Then another batch query process is run that looks for partial name matches. Eight of the fields we query ag...more >>

FULL TEXT INDEXING is grayed out-- Is it O/S prob?
Posted by savvy at 1/26/2006 3:32:05 AM
My OS is Windows XP Professional 2002, when i'm trying to install the Server Components for the FULL TEXT INDEXING using the SQL Server Standard Edition CD, prior to the installation it is giving a message saying "Microsoft SQL Server 2000 Standard Edition server component is not supported on th...more >>

Hit highlight
Posted by José Antonio Farias at 1/25/2006 5:27:34 PM
Hi, Does anyone know a simple way to highlight matches using full text indexes in SQL Server 2005? []´s José ...more >>

Invalid locale ID
Posted by Bobby Henningsen at 1/25/2006 12:00:00 AM
Getting the following error in SQL 2005 : Msg 7696, Level 16, State 10, Line 1 Invalid locale ID was specified. Please verify that the locale ID is correct and corresponding language resource has been installed. Well my question is : Is it possible to install a language or do I have to ac...more >>



Query returning inconsistent results - please help
Posted by Griff at 1/25/2006 12:00:00 AM
I perform a query against a database and it returns one set of results. I perform this query on an "identical" database and it returns a subtly different set of results. In detail. SERVER A I have a table that has a field 'myField' that is of datatype TEXT. This table has a full-tex...more >>

Full text newbie...
Posted by Renato Aranghelovici at 1/24/2006 11:36:34 PM
Hi, group, Made these days some tests and not understand very clear how contains or containstable perform the search. The catalog was built on 2...5 columns, various scenarios. I tried with 2 words I am sure they exists in 2 different fields, but contains nor containstable does not return ...more >>

incremental Population not starting
Posted by tshad at 1/24/2006 8:21:25 PM
Running on Sql Server 2000, I have a catalog set to do an incremental populate every 5 minutes each day. But when I make a change to a record and do a search on it, it doesn't find it, even after about 20 minutes. But if I manually do the incremental population, it then works. Why wouldn'...more >>

Urgent Info
Posted by Vai2000 at 1/24/2006 12:00:00 AM
Can u install FTS later on? I have a clustered env. and due to failure in registering FTS the entire install is rolling back? so perhaps I can delete the FTS Resource and install it later... TIA ...more >>

Full-text catalog is not building properly (completely)
Posted by Greg Smalter at 1/23/2006 6:20:01 PM
I have a full-text index on a Title column in a Books table and I have a CONTAINSTABLE query that seems to work well in most cases. Recently I discovered that the query was failing to return an expected result. When I search for titles containing the word "shining," I expect the following ti...more >>

Fulltext on ntext column
Posted by Papanii Okai at 1/20/2006 1:17:34 PM
Hi Gyus, I have a quick question. Can you run full text search on a column tha contains ntext data? Thanx.. ...more >>

CONTAINS function and OR
Posted by Edward Forgacs at 1/20/2006 9:38:58 AM
I am attempting to create a query with a "dynamic" CONTAINS query, e.g. DECLARE @Keywords VARCHAR(128) SET @Keywords = NULL SELECT * FROM Jobs WHERE (@Keywords IS NULL OR CONTAINS(JobTitle, @Keywords)) However, the CONTAINS function seems to behave very weirdly when OR is involved. Eve...more >>

Searching for multiple words in one field
Posted by GM at 1/18/2006 2:39:47 PM
Hello, I use sqlserver 2005 with fulltext. I want to search for multiple words in a single word field. How can I do this. For example : Field to search = "Iwanttogohome" "homewant" "togohome" Searchquery words = want home My example should find all 3 of the results. It should find a w...more >>

Returning rank values using CONTAINSTABLE - fails with unknown res
Posted by Sune Due Moeller at 1/18/2006 6:25:03 AM
When submitting this Querey in SQL Server 2005 SELECT FT_TBL.Firstname, FT_TBL.LastName, Key_TBL.Rank FROM [user] AS FT_TBL INNER JOIN CONTAINSTABLE([user], Firstname, 'ISABOUT (Christian weight (.1), Ian weight (.2))') AS KEY_TBL ON FT_TBL.userid = KEY_TBL.[KEY] I get this message: ...more >>

Find fulltext index is exist are not
Posted by murali.ipr NO[at]SPAM gmail.com at 1/17/2006 9:19:48 PM
Hi, How to find full text index is exist in the table or not ? like that how to find normal index is exist in the table or not ? Thanks in adv. ---> Murali <---- ...more >>

copying freextex indexes into multiple destination dbs on same dest server
Posted by Steve at 1/16/2006 5:39:02 AM
Hi - I've looked on Microsoft's web site: http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q240867 and not yet been able to find a full answer to my question. I'd appreciate any insight from others: I have a database that has full text indexes on it, that I need to log ship to mu...more >>

Advice Needed On Very Large Full Text Indexes
Posted by Joel Macaluso at 1/14/2006 9:11:33 PM
I'm currently building a product that will need to index and search roughly 500 million documents (perhaps more). Currently I have about 60 million documents in the index (table size about 100GB and index size about 35GB) Performance is (obviously) getting worse and I doubt my current archite...more >>

Msg 7619, Level 16, State 1, Line 1
Posted by Amaal Ali at 1/13/2006 11:26:11 AM
i have a C# program which connect to sql 2k each time i use any arabic word in search i got the following error Msg 7619, Level 16, State 1, Line 1 *** Sent via Developersdex http://www.developersdex.com ***...more >>

Full-text search across multiple tables
Posted by John at 1/13/2006 7:51:43 AM
Hello, We are developing an application against an MS SQL Server 2000 database which requires that we implement full-text searching across columns in multiple tables. The research that we have conducted seems to indicate that this is not directly possible within SQL Server 2000. And we can ...more >>

Identify/parse content within documents?
Posted by noel.whelan NO[at]SPAM gmail.com at 1/12/2006 10:07:06 AM
I've got a full-text index on a table in which I've got word docs and pdfs. I want to parse out certain types of content from these documents, and include the parsed content in the info I give back to the client. In this case, I want to collect the e-mail address(es) from each document yielde...more >>

full text search on multiple tables yielding one rank
Posted by surigaonon at 1/12/2006 7:59:02 AM
Is it possible to do full text search on multiple tables and having one rank for all searches? Ive read a lot of articles that gives me code samples on doing FTS on multi tables but they gave me multiple ranks for each search....more >>

Issue with full-text query (containstable)..
Posted by noel.whelan NO[at]SPAM gmail.com at 1/11/2006 8:51:36 AM
I've got a full-text index on a table 'items' with an image field 'item' into which I've imported word and pdf documents. I've only got ~10 docs imported currently, for testing. I know that each of these documents, except for one, includes the term 'ontology' or 'ontologies'. I've got the fol...more >>

Full-Text Search is not installed, or a full-text component cannot
Posted by Shima at 1/11/2006 3:30:02 AM
Active-active cluster. The second node was reinstalled after a hardware failure. The MS Search service is started. But when I try to query full-text the error message shows up: Server: Msg 7609, Level 17, State 1, Line 1 Full-Text Search is not installed, or a full-text component cannot be lo...more >>

Searching a list of words in multiple columns Constraint : Each word must exist in one of them
Posted by jain.rajat NO[at]SPAM rediffmail.com at 1/10/2006 1:18:34 AM
Hi! I have a requirement where I need to pass in the list of words (could be separated by space) and then I need to find all the rows in SQL which have each of these words in any of the 4 columns. Table ContactDetail columns addressLine1, addressLine2, Town, Country It can have data like...more >>

failed with unknown result
Posted by Lolo at 1/6/2006 4:20:30 PM
Hi, When I run the exemple from the BOL: USE AdventureWorks; GO SELECT Description FROM Production.ProductDescription WHERE CONTAINS(Description, 'ISABOUT (performance weight (.8),=20 comfortable weight (.4), smooth weight (.2) )' ); GO I receive the error message=20 Msg ...more >>

optimizing fts server
Posted by Owen at 1/6/2006 12:23:57 PM
Hello: I know that this question is very ask it, but please tell where I found a god doc about all step that I can set to my sql server to optimizing the fts service, about hardware and software. I using ms sql server 2000 (8.0). Best regards and Happy New Year to every one. Owen. ...more >>

SQL 2005 and weird SP performance problem
Posted by johnsolver NO[at]SPAM gmail.com at 1/5/2006 5:21:48 AM
Hi, I've posted this message previously on sqlserver.server but somebody mentioned that it might be related to fulltext (though I don't think so) so I'm posting it here now. I recently migrated my DB to SQL 2005 from SQL 2000, the migration was mostly painless except for the following problem ...more >>

mssearch.exe CPU utilization increased with SP4
Posted by DC at 1/2/2006 6:14:43 AM
Hi, after installing SP4 I am having trouble with mssearch.exe using excess CPU. Typically all is fine for some hours, then the utilization jumps up to 60% and more. mssearch.exe can then only be stopped via killing the process. After a restart all is fine again. Any known problems with SP4...more >>


DevelopmentNow Blog