Full Text Search- Substring Search Not Working
I have Sql server 2005 SP2.
I enabled it for Full Text search. Substring search where i enter *word* doesn't return any row.
I have a table testtable where description has word Extinguisher.
If i run a query with *ting* it doesn't return any row.
select * from testtable where contains(description,'"*xting*"') ;
But it works if i do
select * from testtable where contains(description,'"Exting*"') ;
The Full text search document says it supports substring search.
Is it an issue with sql server 2005?Please help.
View Complete Forum Thread with Replies
Related Forum Messages:
Full Text Substring Search Not Working
I have Sql server 2005 SP2. I enabled it for Full Text search. Substring search where i enter *word* doesn't return any row. I have a table testtable where description has word Extinguisher. If i run a query with *ting* it doesn't return any row. select * from testtable where contains(description,'"*xting*"') ; But it works if i do select * from testtable where contains(description,'"Exting*"') ; The Full text search document says it supports substring search. Is it an issue with sql server 2005?Please help.
View Replies !
Full Text Search Not Working For Sql2k
Hi Issue1: I have a sql 2k machine. I hav enabled full text indexing on this machine. There after, i inserted and updated so many records. When i do a search using the below query: It gaves me nothing select * from table1 where contains ( col1,'"keyword"' ) Issue 2: Another issue is when i gives multiple columns in the below query for search, it throws up a syntax error message at ( select * from table1 where contains ( (col1,col2,col3),'"keyword"') ) Do sql 2k does not allow this format of query(above). But, the same is working fine with one column. Any inputs on this is highly appreciated. Thanks! Santhosh
View Replies !
Full-text Search Of Image Col Not Working
Hi everybody, I uploaded a txt file into a table with an IMAGE column. When I full-text index it, I can't get any results. A look in the crawl log shows this: (I'm running sqlsrv 2005 - 9.00.2047.00 - SP1 - Developer Edition ---------- 2007-03-20 14:59:59.83 spid25s The component 'sqlfth90.dll' reported error while indexing. Component path 'C:Program FilesMicrosoft SQL Server90COMsqlfth90.dll'. 2007-03-20 14:59:59.83 spid25s Informational: Full-text retry pass of Full population completed for table or indexed view '[frombjorn].[dbo].[dfvd_filedata]' (table or indexed view ID '1977774103', database ID '12'). Number of retry documents processed: 1. Number of documents failed: 1. 2007-03-20 15:00:00.47 spid24s Informational: Full-text Auto population initialized for table or indexed view '[frombjorn].[dbo].[dfvd_filedata]' (table or indexed view ID '1977774103', database ID '12'). Population sub-tasks: 1. -------------- The table def is: CREATE TABLE [dbo].[dfvd_filedata]( [dfvd_recno] [int] NOT NULL, [dfvd_filedata] [image] NULL, [dfvd_format] [varchar](40) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, CONSTRAINT [PK__dfvd_filedata__047AA831] PRIMARY KEY CLUSTERED ( [dfvd_recno] ASC ) The script to create the index is: CREATE FULLTEXT INDEX ON [dbo].[dfvd_filedata] KEY INDEX [PK__dfvd_filedata__047AA831] ON [my_ft_cat] WITH CHANGE_TRACKING AUTO GO ALTER FULLTEXT INDEX ON [dbo].[dfvd_filedata] ADD ([dfvd_filedata] TYPE COLUMN [dfvd_format]) GO ALTER FULLTEXT INDEX ON [dbo].[dfvd_filedata] ENABLE GO I created a file in notepad on my local disk called "dennis.txt" and inserted it into the table with: INSERT INTO dfvd_filedata(dfvd_recno,dfvd_format, dfvd_filedata) SELECT 1,'.txt',* FROM OPENROWSET(BULK N'c: empdennis.txt', SINGLE_BLOB) AS dfvd_filedata ----- Anybody know why this data can't be indexed? Believe me, I've searched and searched and searched and can't find any solutions... thanks to the guru that can help me :)
View Replies !
Help W/ Stored Procedure? - Full-text Search: Search Query Of Normalized Data
Hi - I'm short of SQL experience and hacking my way through creating a simple search feature for a personal project. I would be very grateful if anyone could help me out with writing a stored procedure. Problem: I have two tables with three columns indexed for full-text search. So far I have been able to successfully execute the following query returning matching row ids: dbo.Search_Articles @searchText varchar(150) AS SELECT ArticleID FROM articles WHERE CONTAINS(Description, @searchText) OR CONTAINS(Title, @searchText) UNION SELECT ArticleID FROM article_pages WHERE CONTAINS(Text, @searchText); RETURN This returns the ArticleID for any articles or article_pages records where there is a text match. I ultimately need the stored procedure to return all columns from the articles table for matches and not just the StoryID. Seems like maybe I should try using some kind of JOIN on the result of the UNION above and the articles table? But I have so far been unable to figure out how to do this as I can't seem to declare a name for the result table of the UNION above. Perhaps there is another more eloquent solution? Thanks! Peter
View Replies !
Save Indexed Search Words (Index Full-text Search)
We have SQL Sever 2005 and created a Full-text Search on a one of our main tables. When some one comes for the first time and searches for "carb" it takes a long time to return results, but when the same search is done within a few more minutes, results return in less than 1 second. Is there a setting in SQL Server 2005 to save all the indexes of searched words? Thanks
View Replies !
Full-Text Search: Prefix / Suffix Search
Please help me to create an SQL Server 2000 Stored Procedure for using prefix and suffix terms. Example: Say I want to find "Terminator" (1984). I want to be able to use "Term" or "ator" as search results and still return the proper record. Here is my Stored Procedure creation sql: CREATE PROCEDURE sps_searchTitles(@searchTerm varchar(255)) AS SELECT * FROM Video WHERE FREETEXT (Video.*, '"*@searchTerm*"') GO --- The above does not appear to properly check both prefix ("Term---") and suffix ("---ator") terms. I am trying to accomplish what is similarly done with LIKE '%term%'. thanks, YM
View Replies !
Full Text Search Vs LIKE Search
Are there any big differences between the two search techniques? It seems like they are both very similar. SELECT * FROM TABLE1 WHERE TEXTFIELD1 LIKE '%DATABASES%' SELECT * FROM TABLE1 WHERE CONTAINS (TEXTFIELD1 ,' "DATABASES" ')
View Replies !
Sql Server 2005 Full Text Search Not Working As Expected On Production Server
I have this simple full text search query that works perfectly on my own computer using sql server 2005 express, however, on the production server(shared hosting)when I added the first 50+ rows, the full text search works perfect, but as the number of rows increases, the full text search can only see the first50+ rows, but not the new ones. Is there any quick solution for this or it's just a common mistake for developers for not properly indexed columns?Is there a way to re-indexed all rows without loosing data on the live server? search query: SELECT TOP 50 *FROM li_BookmarksWHERE FREETEXT(Keywords,@Keywords)
View Replies !
Create Site Search Using Sql Server &"full Text Search&"
would you use sql server "full text search" feature as your site index? from some reason i can't make index server my site search catalog, and i wonder if the full text is the solution. i think that i wll have to you create new table called some thing like "site text" and i will need to write every text twice- one the the table (let's say "articles table") and one to the text. other wise- there is problems finding the right urlof the text, searching different tables with different columns name and so on... so i thought create site search table, with the columns: id, text, url and to write every thing to this table. but some how ot look the wrong way, that every forum post, every article, album picture or joke will insert twice to the sqr server... what do you think?
View Replies !
SQL Server 2000 Full Text Search (extract Pieces Of Text)
Hello everyone ! I want to perform Full Text Search with SQL Server 2000. My documents (.doc, .xls, .txt, .pdf) are stored in a SQL Server field which is binary (the type of the column is image). I would like to know, how you can extract pieces of text from the documents. Example: I have a ASPX page with codebehind in C# making the search in a table in SQL server that is full text indexed. I make a search looking for the word "peace", than SQL server will take care about the search and return it to me the rows that match with that. But also I'd like to extract the 50 characters before and after where sql server found the word "peace" to show in the result page. Does anyone has any idea how to work around it ? Best regards. Yannick
View Replies !
Adding A Full Text Search Across Multiple Tables (with Text Fields)
Hi, i'm trying to do a full text search on my site to add a weighting score to my results. I have the following database structure: Documents: - DocumentID (int, PK) - Title (varchar) - Content (text) - CategoryID (int, FK) Categories: - CategoryID (int, PK) - CategoryName (varchar) I need to create a full text index which searches the Title, Content and CategoryName fields. I figured since i needed to search the CategoryName field i would create an indexed view. I tried to execute the following query: CREATE VIEW vw_DocumentsWITH SCHEMABINDING ASSELECT dbo.Documents.DocumentID, dbo.Documents.Title, dbo.Documents.[Content], dbo.Documents.CategoryID, dbo.Categories.CategoryNameFROM dbo.Categories INNER JOIN dbo.Documents ON dbo.Categories.CategoryID = dbo.Documents.CategoryID GOCREATE UNIQUE CLUSTERED INDEX vw_DocumentsIndexON vw_Documents(DocumentID) But this gave me the error: Cannot create index on view 'dbname.dbo.vw_Documents'. It contains text, ntext, image or xml columns. I tried converting the Content to a varchar(max) within my view but it still didn't like. Appreciate if someone can tell me how this can be done as surely what i'm trying to do is not ground breaking.
View Replies !
Full-Text Search
Hello ! With SQL Server Management Studio Express I have created a catalog and a index.Here is the code : create fulltext catalog myfirstcatalogcreate unique index myfirstindex on northwind.dbo.customers(companyname)create fulltext index on northwind.dbo.customers(companyname)key index myfirstindex ON myfirstcatalogWITH CHANGE_TRACKING AUTO With SQL Server Management Studio Express and the following command the full text search is working fine. select companynamefrom northwind.dbo.customerswhere contains(companyname, ' "blauer" ') I have a big problem : When I try to use this database (NOTRHWIND.MDF) into my .aspx file with VWD 2008 I get an error : Cannot use full-text search in user instance. Can you tell me what can I do to make use of full-text search inside my aspx pages ? Thank You !
View Replies !
Search Text Full
hi all.i want to search, for example :"test string" in database : table have column(name) , i want to search all rows with column(name) is "test " or "string" or "test string"i don't want to use(full text search of sqlserver 2005 ) can i help me.thanks in advance
View Replies !
Full Text Search Help
Hi I have a full text index on my product table. When I do a search for Record, it returns all values for Record and Records.Now If I do a search with a spelling mistake say Recod . it doen't return anything.How can I get the full text to return my query even if there is a spelling mistake ? Thanks My query:SELECT * From Product WHERE FREETEXT (description, @SearchString)
View Replies !
Full-Text-Search
Hi friends i work with sql server 2005 express(Management Studio) can i use full text search service with that edition of sql server? and how i can use that. thank u.
View Replies !
Full Text Search
I am asking about installing Microsoft Search service in SQL Server 2000 in Windows XP Professional Is that possible? And By the way it's not possible for me to switch to SQL Server 2005 that I know that full text indexing already exists in it thanks
View Replies !
Help With Full-text Search
MSSQL server database contains the projects table that allow full-textsearch.I search projects with name that contains exact phrase 'Project 2':SELECT * FROM projects WHERE CONTAINS(projects.name,N'("Project 2")'))but results contain projects with names "Project 1", "Project 2","Project 3"What is correct 2nd CONTAINS() function parameter for searching"Project 2" only?
View Replies !
Full Text Search
Hi everyone I am using SQL server 2000 with SP3 on Windows 2003 server. I have scheduled a job to populate a full text index incrementally. Everytime it runs the job to populate the index table it writes some messages into event log. Like this: 1. Event Type : Information Event Source : Microsoft Search Event Category: Gatherer Event ID : 3019 Date :8/7/2004 Time :2:21:00 PM User : N/A Computer : ARC-03-DEV Description:1 The crawl on project <SQL Server SQL00002000009> has started. 2. Event Type : Information Event Source : Microsoft Search Event Category: Gatherer Event ID : 3047 Date :8/7/2004 Time :2:21:00 PM User : N/A Computer : ARC-03-DEV Description: The end of the incremental crawl for project <SQL Server SQL00002000009> has been detected. The Gatherer successfully processed 998 documents totaling 0K. It failed to filter 0 documents. 998 documents were modified. 0 URLs could not be reached or were denied access. The event log is getting filled frequently. Is there any way to stop this messages? It is normal for Microsoft Search to write this message into EventLog? Even though there is no chanage in the database it give the above messages. Any one know the reason please help. Quick reply is appreaciated. Reagrda, Atiq Rahman
View Replies !
Full Text Search
Hi, We have a windows 2003 server (standalone) running SQL server 2000. We need to enable full text search on the database available in it. We have already added full text search in the installation and the option is available but when we try to create a full text catalog on any of the databases, it crashes ie., doesnot respond and gives the typical 'report to microsoft window'. We need to restart the SQL server after the same. can someone help us out. Thanks Smith
View Replies !
Full Text Search
Hi This is Yogesh Jangam I m using SQL Server 7.0 and ASP for an intranet application I am using Full Text Search feature os SQl 7.0. The problem is i am not sure where to populate my Catalog which i am using for searching Articles. Basically, Various writers will be submiting, approving Articles which can then be searched by other users to be read or referenced i was thinking to populate full or incremental, once an Article is approved, but i think it is time and resource consuming any way suggest me!!
View Replies !
SQL Full Text Search
Hi. We are having a problem with full text search. Our server has recently been down graded from enterpise to standard eddition SP3. I have reset the SQL Service account to local admin using enterpise manager but when i try to populate the full text catalogue I get an item count of 0. I have reregistered all dlls in the mssearchin directory and the language key in HKLMsoftwaremicorsoftsearch1.0eutral doesn't exist. Both the MSSearch and SQL services are running under the local admin account, and the builtadministrators account is a sysadmin. Any help will be much apreciated.. pulling my hair out on this one.
View Replies !
Full-Text-Search
Hi, I have a full-text search enabled table and an image data type column that stores the extracts from the documents stored in the files. I have created a full text catalog that indexes few columns in the table and image data type column as well and I assigned the extension column to this image data type column. Everything works fine except that search on the image data type column called, in my case "body" does not return anything. The documents exist, there is an information in the "body" column. My code goes like this: select FT_TBL.resourceID, FT_TBL.lang, FT_TBL.keywords, FT_TBL.description, FT_TBL.extension, b.rank from full_text_search as FT_TBL inner join containstable(full_text_search, *, 'Microsoft') as b on b.[key] = FT_TBL.resourceID order by b.rank desc any help appreciated, thanks
View Replies !
Full Text Search
hi, I just added Full text search in sql server 2000 installation. I tried to create a full text searh at employee table in the pubs database, at the final stage, IT froze on me. then when I checked the Window Task Manager Performance table, the mssearch.exe was taking 98% of the CPU. I had to reboot the server. then I installed teh fulltext search in another server box and get he same the same thing,but this time the cpu was a t 50%... Am I missing any steps that I need to do or configure sql server to be able to utilize a full text search.... Please advice.... Thanks Ali
View Replies !
Full Text Search
I am using a full text index search on SQL 2000 and need to rate the results by percentage. Can anyone give me any guidance on how to translate the search results into percentages? Thanks in advance--Mike
View Replies !
Full-text Search
Hi, I got a problem in my SQL2000 server full-text search function. When I created the full-text catalog and index on tables, I got the message showing it is successful. But when I checked the properties of the catalog, I found "item count" is zero. Apparently, it didn't populate any data into index. What could the possible reason be? Any idea? I appreciate your comments. Diego
View Replies !
Full-Text Search
I am trying to create a full text catalog for a database (using SQL Server 7.0 beta 3 eval copy). I am unable to create because of the error: "Could not load the full-text search component-SQLFTQRY.DLL" Does anyone know if there are limitations on the eval for full-text searching? I do not have the required .dll, possibily the install was not 100%?
View Replies !
Full-Text Search
I have enabled a table for Full-Text-Search and i´m looking for sample code (stored Procedures). The table contains Products like: Milk, Honey, Milk with honey, chocolate, nuts, chocolate with nuts, oranges, etc. the input comes from a webpage where users can search for products. How do i manage my stategy if a user puts only 1 letter or parts of words in the inputbox? thank you
View Replies !
SQL Full Text Search
Greetings ! Has anyone seen a problem in SQL 7 where you create a full text catalog, define an index on a table, and run 'populate', and end up with an empty catalog ? It runs for a while during the population, and there are no messages in the logs, but the 'item count' property of the catalog is 0. Also you can run a query that uses the index (i.e. uses 'CONTAINS') and you receive no error, and no results. I've set this up on other servers, so I know it works, but can find no mention of this problem anywhere. TIA Eric
View Replies !
Full Text Search
The full text search is great in SQLS7, but how can you turn off the microsoft word list that says 'error: too generic of a search'???? je
View Replies !
Full Text Search
I am not having any luck setting up Full text search. I am using SQL 7 with sp2 on an NT server with service pack 6. I can set up the catalog with no problem but when I try to populate the catalog, I am getting the following error in the NT event viewer: One or more warnings or errors for Gatherer project <SQLServer SQL0000600005> logged to file <d:MSSQL7FTDATASQLServerGatherLogsSQL0000600005.2.g thr>. Unable to access crawl seed <MSSQL://LOCALHOST/6.341576255> in project <SQLServer SQL0000600005>. Error: 80072ee2 - The operation timed out. Unable to start crawl for project <SQLServer SQL0000600005>. No crawl seeds could be accessed. Detected end of crawl for project <SQLServer SQL0000600005>. Successfully processed 0 documents, 0K. Failed to filter 1 documents. Does anyone know how to correct this problem? Thanks Terry
View Replies !
Full Text Search
Hi, My Prod. server is having SQL Server 7.0 with SP2 installed. I am planning to install Full Text Search component. I know I have to run setup and select Full Text Search from Server Components. But, Do I have to re-install service pack 2 after this ? What are the other concerns in, such modifications to the existing SQL installation ? Thanks
View Replies !
Full-Text Search
Hi, When I am trying to start 'Full-text indexing wizrd', it is throwing me the error 'Full-text server service needs to be running in order to open this wizard'. But, I have Full-text search components installed along with My SQL Server 7.0 Ent. Edition and the 'Microsoft Search' service is running. Can anybody guess, what could be wrong?
View Replies !
FULL TEXT SEARCH
I have defined full-text indexing on a table a couple of months ago and the catalog was fully populated, it was working fine until now. But suddenly has stopped working, I have been scheduling incremental population on a regular basis and also have tried to remove and redefined full-text indexing but can't get it to work. Can anyone help please
View Replies !
FULL TEXT SEARCH
I have a table which is defined for full-text indexing and the catalog was fully populated, it was working fine at first, i checked it a couple of weeks after and doesn't seem to work. I have been scheduling incremental population on a regular basis, I have tried rebuilding the catalog and also have tried to remove and redefined full-text indexing but can't get it to work. Does anyone know what may be causing this to stop working? thanks in advanced
View Replies !
Full Text Search
Hi Gurus. Is there anyway that i can do a Full text search query on multiple tables. I am trying to achieve something like this. select * from table1,table2,table3 where contains (*,'isabout("SWYNK Threads*")') SQL allows me to do the search query only for one table. I have to write procedure to put multiple select queries for each tables. Is there any other way i can do a search on all table i have in Full text catalog. Any suggestions and comments are welcome. Please advice. -MAK
View Replies !
Full Text Search
After following all of the steps in Swynk's Guide to Full Text Search, I still can't seem to retrieve any records from the full-text search. I get messages saying that I created the Index correctly and that I successfully populated the catalog. But when I View the Properties of the catalog, the Unique Word Count = 1 (but there are thousands of words in the table). I know that there is a record with the word "help" in one of the full-text indexed columns, but when I call Contains(column-name, 'help'), I recieve an empty recordset. Does anyone have any suggestion on what I can try next? Thanks for any help, Arthur
View Replies !
Full Text Search
I have set up a Full Text Catalog in sql2k on one of my tables which holds a list of adverts and keywords associated with each advert. On the search page of my website the user will enter some keywords to search upon. I am trying to determine the advert most relevant to those keywords to display. I have this query so far select [key], [rank]as rank, b.Keywords from tbl_BANNER_ADVERTS as b join CONTAINSTABLE (tbl_BANNER_ADVERTS, keywords, 'ISABOUT (asp WEIGHT(0.9),sql WEIGHT(0.9),java WEIGHT(0.9))') as k ONb.BannerPK = k.[KEY] group by [Key], rank, Keywords order by rank desc but am getting these results back keyrankKeywords 1476oracle java asp 1543java oracle asp 1143asp sql html 1330asp html java 1211sql oracle html What I dont understand is why 14 is above 15 when both contain asp and java (which im looking for) and oracle which im not. Also why isnt 11 and 13 the same ranking as they both match 2 words as well. Ive given them all equal weight so should they not treat each word the same. How can I get it so that the banners that match the most keywords entered by the user come above the others. I just want the banners which match the most words to be scored highest. If one advert has 2 words and another has 2 different words I want both with equal ranking so I can then randomly choose between them. I don't care about the order they are entered or the proximity of one word to another or the length of the word. All words should be treated equally and the advert with the most matches should be top. Any help would be much appreciated and I thank you in advance.
View Replies !
Full Text Search
Hi all, Currently I am trying to rewrite a query that performs the followings: 1. Read all persons from table Persons and return all the details; 2. Query primary tries to filter out invalid email addresses and any email address exist in the unsubscribe table. 3. The query need to identify if the email address are valid through following conditions: a. email address should contain patter like %@%.% b. email address should not contain like unknown.com or none.com etc Hence the simple query would be: SELECT * FROM Persons WHERE Email NOT LIKE ('%@%.%','unknown.com','none.com') AND Email NOT IN (SELECT Email FROM UNSUBSCRIBE) This query returns a subtential amount of rows and sometimes very resource hungry. I am currently trying to substitute it with full text index, as my primary concern is to improve its performance. Currently I do have the following indexes: 1. Persons table : Cluster index on PersonID Non Unique index on Person(Email) Full text index on Person(Email) Now my problem is I was not able to write subquery in the containstable operator to get rid of all the unwanted email addresses at once. Any suggession what could be the best way to tune this process. Thanks in advance.
View Replies !
Full Text Search 'Near'
using SQL server 2005 I have a table which has full text search index enabled when I run a search using the 'Near' option it returns rows which meet the criteria, how ever the criteria are not 'near' each other they are several hundred words apart. What is the problem How near is near thanks in advance Glyn
View Replies !
Full Text Search
I'm trying to replace LIKE '%a%' in stored proc with the Full text search. I cann't add the % in the begining of the search item. Is it possible to do that? eg. 'select * from table1 where col1 LIKE %' + search1 + '%' In the above statement I want to use Full text search and add % before and after the 'search1'.
View Replies !
Full Text Search
Hello, I need to create a stored procedure to do a full text search on three tables. The columns are the same data type. Someone suggested using UNION. I'm new to stored procedure and you guy's have help before. @NarrSearch Varchar (200) as select a as D, b as E, c as F from table1 where contains (c, @NarrSearch) Union all select g as D, h as E, c as F from table2 where contains (c, @NarrSearch) etc
View Replies !
Full Text Search
I have setup full text search on a table. Everything works fine. Now I want to find documents that contain the next string: 'T-150/04' The query will give zero results. Is there a way to find documents that contain these kind of strings? (slahses and minus) Regards, Freek
View Replies !
Full Text Search
I have a DB in SQL2K5 sp2 which we have a couple of FTC's created. scenario is as follows DB1 is a prod DB which has 3 FTC created. This DB needs to be backed up so it can be restored as a QA DB for pre prod roll-out. The QA DB is restored in the same instance as prod. Now with SQL2k5 incoporating the backup of FTC's into the database backup this caused a small problem. The restore has to perfrom the with move and this carries across to the FTC files. However atm the backup is being undertaken at the file level and not copying the FT files. The restore process is using the with Move, once the QA DB is up again i drop the FTC from the QA DB. 1 particular FTC did have a nightly Incremental load happening but this has been stopped for the moment due to these issues. The QA restore only happens once a wk. When this occurres the restore process sits and hangs (thus making the qa DB unavailable). Using sp_who2 and the activity monitor i have been able to see that the spid for the restore is waiting and has a wait type of 'MSSEARCH'. (From what i have read this is waiting for some action in the MS Search service to complete) Due to this search wait type when the scheduled backup of DB1 starts it is then hung with a wait type of 'MSSEARCH'. this then leads to increasing connections which leads to blocking and timeouts of the app. The Restore spid is not able to killed. The backup spid is not able to killed. The MS Search Service is not able to be restarted. The only way i have been able to resolve this is by bouncing the server. Now as this is a prod server this is not suitable. I have tried that just prior to the full backup starting to stop the MS Search Service but as the FTC's are included into the backup the service obviously needs to be running and the backup process started the service again. I am at a loss as to what could be causing the FT Service to get itself into a state where it is sitting waiting like this. Advice help on places to start and look so as to be able to stop and fix this would be appreciated. thx in advance for you knowledge on this
View Replies !
Full Text Search!!
Hi, I need to develop a search application in which each word can be searched as it works in dictionaries. I was thinking of creating a table containing keywords and create an index on them. Since the search is done on some text files I think if it's better to save the files in a table then create another table which holds a reference to the keywords the file has!! Actually I'm not sure of the best design so any idea is appreciated. Please lead me to a proper forum topic, if here's not a good place. Thanks
View Replies !
Full Text Search
history.ix, index_a.ix, index_d_1.ix, index_di_1.ix, index_i_2.ix, index_k_2.ix, index_kl_1.ix, index_klh_2.ix, index_n.ix, index_r_l.ix, index_sv.ix, index_v.ix, index_v_ix.log, indexlog.dat. This files are generated during full text search. now i have doubts regarding this, 1) Can we referrence this files directly 2) Where it will be located in our system? 3) is it loaded for each Full Text Index we created for the table. 4) How this file are used in Full Text Search.
View Replies !
Full Text Search
I want to use Full Text Search to search keywords from the documents provided to me. Now, i have doubt that, is it possible to Perform Full Text Search without uploading the document details (.doc, .txt, etc...) to the sql server.
View Replies !
|