active questions tagged full-text-search - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T23:42:30Zhttp://stackoverflow.com/feeds/tag/full-text-searchhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1822641/can-mysql-fulltext-search-be-adapted-to-search-for-partial-words0Can MySQL fulltext search be adapted to search for partial words?Petruza2009-11-30T21:52:28Z2009-11-30T21:52:28Z
<p>I implemented MySQL fulltext search and worked perfect.<br>
Now the client wants that partial matches be found by the search, for example the term 'base' should match 'database'.<br>
I know the whole idea of fulltext search is based on word delimiters, and searching for full words.<br>
I know I most likely will have to use an undesirable <code>LIKE '%$term%'</code> which will ruin the sweetness and performance of the fulltext search.<br>
So, is there any hope?<br>
Thanks in advance. </p>
<p>PS: I'm user <a href="http://stackoverflow.com/users/151053/petruza">http://stackoverflow.com/users/151053/petruza</a>, I had openID authentication on my own site, but my host went down recently, so I can't log in through it, so I'm using this kind of alias.</p>
http://stackoverflow.com/questions/1822307/find-and-replace-multiple-strings-in-file-then-output-to-new-filename-python0Find and replace multiple strings in file then output to new filename pythonslack313372009-11-30T20:50:45Z2009-11-30T21:44:00Z
<p>I am looking to create a python script that will read one source file then produce another file with a string for the name. </p>
<p>for example </p>
<p>macaddress.cnf.xml contains the source file </p>
<p>I need to change '6000' to '6001' in multiple places of macaddress.cnf.xml, then I want to output to newmacaddress.cnf.xl.</p>
<p>This is what I have</p>
<pre><code>#! /usr/bin/python
#read and write to file
f = open(file)
for line in f:
if line.contains('66001'):
newline = line.replace('66001', '60001')
</code></pre>
<p>To add I would like to be able to do this with a csv or whatever and have the script run through and do </p>
<p>60002 >> macaddressfromcsv.cnf.xml
60003 >> macaddressfromcsv.cnf.xml
60004 etc.</p>
<p>Sorry I am very new to this any help would be great.</p>
http://stackoverflow.com/questions/1820215/full-text-search-across-concatenated-columns1Full-text search across concatenated columns?Herb Caudill2009-11-30T14:42:12Z2009-11-30T19:26:07Z
<p>I'm new to free-text search, so pardon the newbie question. Suppose I have the following full-text index:</p>
<pre><code>Create FullText Index on Contacts(
FirstName,
LastName,
Organization
)
Key Index PK_Contacts_ContactID
Go
</code></pre>
<p>I want to do a freetext search against all three columns concatenated</p>
<pre><code>FirstName + ' ' + LastName + ' ' + Organization
</code></pre>
<p>So that for example</p>
<ul>
<li>Searching for <code>jim smith</code> returns all contacts named Jim Smith</li>
<li>Searching for <code>smith ibm</code> returns all contacts named Smith who work at IBM</li>
</ul>
<p>This seems like it would be a fairly common scenario. I would have expected this to work:</p>
<pre><code>Select c.FirstName, c.LastName, c.Organization, ft.Rank
from FreeTextTable(Contacts, *, 'smith ibm') ft
Left Join Contacts c on ft.[Key]=c.ContactID
Order by ft.Rank Desc
</code></pre>
<p>but this is apparently doing <code>smith OR ibm</code>; it returns a lot of Smiths who don't work at IBM and vice versa. Surprisingly, searching for <code>smith AND ibm</code> yields identical results. </p>
<p>This does what I want...</p>
<pre><code>Select c.FirstName, c.LastName, c.Organization
from Contacts c
where Contains(*, 'smith') and Contains(*, 'ibm')
</code></pre>
<p>...but then I can't parameterize queries coming from the user -- I would have to break up the search string into words myself and assemble the SQL on the fly, which is ugly and unsafe. </p>
http://stackoverflow.com/questions/1808925/solr-delta-import-not-with-lastmodified0SOLR - delta import not with last_modifiedYurish2009-11-27T13:57:03Z2009-11-30T15:21:52Z
<p>I saw only ways using delta import with last_modified. Is there some other ways to do delta_imports withut using timestamps? For example, if i have unique key(integer), can i tell SOLR to index only those, which are greater then my last unique key?</p>
http://stackoverflow.com/questions/1757462/searching-and-ranking-short-phrases-e-g-movie-titles3Searching and ranking short phrases (e.g. movie titles)Greg Beech2009-11-18T16:57:49Z2009-11-30T08:22:02Z
<p>I'm trying to improve our search capabilities for short phrases (in our case movie titles) and am currently looking at SQL Server 2008 Full Text Search, which provides some of the functionality we would like:</p>
<ul>
<li>Word stemming (e.g. "saw" also means "see", "seen", etc.)</li>
<li>Synonyms (e.g. "6" is synonymous with "VI")</li>
</ul>
<p>However the ranking algorithm seems to be proving problematic, using <code>FREETEXTTABLE</code> with the search term and extracting the <code>RANK</code> field. For example when the user enters "saw" then the results we get with out catalogue are:</p>
<pre><code>RANK | Title
---------------------------------------------------------------------
180 | The Exorcist: The version you've never seen
180 | Saw IV
180 | Saw V
180 | Anybody Here Seen Jeannie?
180 | Seeing Red
</code></pre>
<p>All of these have the same rank, even though it would be clear to a person that the second and third entries are a better match than the other stemmed terms.</p>
<p>Similarly entering "moon" gives the following results:</p>
<pre><code>RANK | Title
---------------------------------------------------------------------
144 | Pink Floyd - The Dark Side of the Moon
144 | Fly Me To The Moon 3D
144 | Twilight: New Moon
144 | Moon
</code></pre>
<p>And here although there are no stemming matches, it would be clear to a person that the best match for "moon" is "Moon" rather than longer titles which contain it only as part of the title, yet FTS ranks them equally.</p>
<p>I'm guessing that it's probably something to do with the way SQL Server ranks results, which treats stemmed words and synonyms with equal weight to the original term, and takes into account word density for ranking which would be good with long passages of text, but doesn't really apply with short phrases like these. So I'm starting to thing that FTS isn't suitable for this job, unfortunately.</p>
<p>I don't really want to re-invent the wheel, so are there any existing search solutions that would work for titles and give good rankings plus the stemming/thesaurus functionality? It would also be nice if it had a spell checker to implement "did you mean..." functionality like Google, so "saww" would be corrected to "saw" and "mon" to "moon", etc.</p>
http://stackoverflow.com/questions/1637383/solr-how-to-index-database-partly0SOLR - how to index database partly?Yurish2009-10-28T13:51:25Z2009-11-30T07:24:07Z
<p>I have a postgresql database. In table, which i need to index, i have about 20 million rows. When i want to index them all in one attempt(smth like "select * from table_name"), i have Java OutOfMemory error, even, if i`ll give to JVM more memory. </p>
<p>Is there any option in SOLR to index a table part by part(e.g. execute sql for first 1000000 rows, then index it, then execute sql for second million)?</p>
<p>Now i am using sql query with LIMIT. But, everytime, when solr has indexed it, i need manually start it again.</p>
<p><strong>UPDATE:</strong> Ok, 1.4 is out now. No OutOfMemory Exceptions, seems, Apache had done very big work on DIH. Also, now we can pass parameters through request, and use them in our SQL selects. Wow!</p>
http://stackoverflow.com/questions/1817933/sql-server-how-to-order-by-date-if-the-date-is-getdate1SQL Server: How to order by date, if the date is < GetDate()Ev2009-11-30T05:03:07Z2009-11-30T05:12:46Z
<p>Hi,</p>
<p>Here's an interesting one... hope I can explain it well...</p>
<p>I have a collection of competitions in a single table in my SQL Server DB. I'm doing a full text search over them, which works fine. However, some of the competitions are closed, and I want these closed comps to show up after the open comps, while still respecting the rank we get from full text search.</p>
<p>So if I had an IsOpen bit feild, I would them ordered by </p>
<pre><code>ORDER BY IsOpen DESC, KEY_TBL.Rank DESC
</code></pre>
<p>Now the problem is I don't have an IsOpen bit field. Instead, I have a ClosedDate field, which is a datetime.</p>
<p>So What I really need to do is something like:</p>
<pre><code>ORDER BY (ClosingDate < GetDate()) ASC, KEY_TBL.Rank DESC
</code></pre>
<p>Anyone know how to do this?</p>
<p>Any ideas would be great! Thanks in advance.</p>
<p>-Ev</p>
http://stackoverflow.com/questions/1812689/sql-server-2008-cte-and-containstable-statement-why-the-error0SQL Server 2008 CTE And CONTAINSTABLE Statement - Why the error?Brian2009-11-28T14:53:31Z2009-11-29T04:03:41Z
<p>I am testing out moving our database from SQL Server 2005 to 2008. We use CTE's for paging.</p>
<p>When using full-text CONTAINSTABLE, the CTE will not run and generates an error.</p>
<p>Here's my non-working code-</p>
<pre><code>WITH results AS (
SELECT ROW_NUMBER() over (ORDER BY GBU.CreateDate DESC ) as rowNum,
GBU.UserID,
NULL AS DistanceInMiles
FROM User GBU WITH (NOLOCK)
WHERE 1=1
AND GBU.CountryCode IN (SELECT [Value] FROM fn_Split('USA',','))
AND GBU.UserID IN (SELECT [KEY] FROM CONTAINSTABLE(VW_GBU_Search, *, 'COMPASS'))
)
SELECT * from results
WHERE rowNum BETWEEN 0 and 25
</code></pre>
<p>If I comment out the CONTAINSTABLE line, the statement executes. If I only run the SELECT statement (not the WITH), the statement executes fine.</p>
<p>The un-helpful error I get on this is:</p>
<blockquote>
<p>Msg 0, Level 11, State 0, Line 0 A
severe error occurred on the current
command. The results, if any, should
be discarded. Msg 0, Level 20, State
0, Line 0 A severe error occurred on
the current command. The results, if
any, should be discarded.</p>
</blockquote>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1807655/sql-server-fulltext-search-windows-service-failure0SQL Server FullText Search (Windows Service) - FailureGavin2009-11-27T09:28:21Z2009-11-27T09:37:23Z
<p>Hi all,</p>
<p>I've been asked to look at a server issue but for some reason I am unable to track down the cause.</p>
<p>Basically, they have SQL Server 2005 (Workgroup Ed) that has a number of databases running. One of which has Full Text indexing enabled on a table.</p>
<p>When trying to read the data regardless of what client I use, I get </p>
<blockquote>
<p>Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.</p>
</blockquote>
<p>The only way to get it working again is by killing the process</p>
<blockquote>
<p>C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\msftesql.exe</p>
</blockquote>
<p>I had to kill the process because I was unable to stop/restart the windows service</p>
<blockquote>
<p>SQL Server FullText Search</p>
</blockquote>
<p>By killing the process, it started working again.</p>
<p>I then rebuilt the index on the table and all was fine.</p>
<p>This morning i received another email stating that the problem was back. I was able to replicate the fix but I really need to work out whats going on.</p>
<p>Does anyone have any suggestions?</p>
<p>Cheers</p>
<p>Gavin</p>
http://stackoverflow.com/questions/1804851/full-text-index-population-performance-on-a-sql-2005-indexed-view0Full-text index population performance on a SQL 2005 indexed viewPent Ploompuu2009-11-26T17:16:23Z2009-11-27T06:24:40Z
<p>I have created an indexed view:</p>
<pre><code>CREATE VIEW LogValueTexts WITH SCHEMABINDING AS
SELECT ISNULL(LRVS_SLOG_ID*256+LRVS_IDX,0) AS ID,LRVS_VALUE AS Value
FROM dbo.LRVS_LogRecordedValues WHERE LEN(LRVS_VALUE)>4
CREATE UNIQUE CLUSTERED INDEX IX_LogValueTexts ON LogValueTexts (ID)
</code></pre>
<p>On SQL 2005 Standard SP3 it takes forever to populate a full-text index on that view because the full-text indexing executes the following query for every row in the view:</p>
<pre><code>SELECT COLUMN FULLTEXTALL FROM[dbo].[LogValueTexts] WHERE COLUMN FULLTEXTKEY = @p1
</code></pre>
<p>I assume that <code>COLUMN FULLTEXTALL</code> and <code>COLUMN FULLTEXTKEY</code> are actually <code>Value</code> and <code>ID</code>, but that's what SQL Server Profiler shows. The problem is that the query plan uses a clustered index scan over about 11M rows/1GB of data because it doesn't use the index on the view.
I have tried creating a plan guide for that query, but since it's not a standard T-SQL query it doesn't allow it (<code>Incorrect syntax near the keyword 'FULLTEXTKEY'</code>).</p>
<p>Is there a way to get this full-text index to work other than:</p>
<ul>
<li>upgrading to SQL 2008 (or SQL 2005 Enterprise) where it works fine.</li>
<li>creating a unique ID and a covering index on the underlying table.</li>
</ul>
<p>Upgrading would require downtime on the server and probably new SQL Server licences while creating the unique ID and a covering index would waste a lot of space because only a subset of the 11M rows needs full-text indexing (<code>LRVS_VALUE</code> is often <code>NULL</code> or has a very short text value).</p>
http://stackoverflow.com/questions/156954/search-for-words-in-sql-server-index0Search for words in SQL Server indexSam2008-10-01T10:10:38Z2009-11-26T09:42:01Z
<p>I need something in between a full text search and an index search:<br />
I want to search for text in one column of my table (probably there will be an index on the column, too, if that matters).</p>
<p>Problem is, I want to search for words in the column, but I don't want to match parts. </p>
<p>For example, my column might contain business names:<br />
<em>Mighty Muck Miller and Partners Inc.<br />
Boy & Butter Breakfast company</em> </p>
<p>Now if I search for "<em>Miller</em>" I want to find the first line. But if I search for "<em>iller</em>" I don't want to find it, because there is no word starting with "iller". Searching for "<em>Break</em>" should find "<em>Boy & Butter Breakfast company</em>", though, since one word is starting with "<em>Break</em>".</p>
<p>So if I try and use </p>
<pre><code>WHERE BusinessName LIKE %Break%
</code></pre>
<p>it will find too many hits.</p>
<p>Is there any way to Search for Words separated by whitespace <strong>or other delimiters</strong>? </p>
<p>(LINQ would be best, plain SQL would do, too)</p>
<p><strong>Important:</strong> Spaces are by far not the only delimiters! Slashes, colons, dots, all non-alphanumerical characters should be considered for this to work!</p>
http://stackoverflow.com/questions/1801285/sql-server-fulltext-multiple-columns0SQL Server Fulltext - multiple columnstlianza2009-11-26T02:46:33Z2009-11-26T05:51:03Z
<p>Hi All,</p>
<p>I have what I think is a very basic scenario, but what I've read makes it sound like this is not easy in SQL Server Fulltext.</p>
<p>I have 2 columns, First and Last name. I want to support fulltext search on them such that if someone types "John Smith" people with a match on both first and last come up first.</p>
<p>Problem is, although it's easy to create an index across multiple columns, and easy to search multiple columns, the scoring doesn't reflect multiple columns.</p>
<pre><code>SELECT [Key], Rank FROM CONTAINSTABLE([User], (FirstName,LastName), '<CLAUSE_HERE>')
</code></pre>
<ol>
<li>If CLAUSE_HERE is "john smith" I get no results, because that phrase does not exist in either field.</li>
<li>If it's "john OR smith" I get all users with either name in either field, sorted in an unhelpful order.</li>
<li>If it's "john AND smith" I get no results, because neither field contains both words.</li>
</ol>
<p>Seems like the only solution is to autogenerate a query that runs containstable on each field, does some math, sums the scores, etc. Does that sound right? Is there an easier way around it? My actual query has a lot more fields to it - this is a simplified example.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1801135/what-is-the-meaning-of-o-polylogn-in-particular-how-is-polylogn-defined1What is the meaning of O( polylog(n) )? In particular, how is polylog(n) defined?Managu2009-11-26T01:45:59Z2009-11-26T02:02:05Z
<p><b>Brief:</b><br/>
When academic (computer science) papers say "O(polylog(n))", what do they mean? I'm not confused by the "Big-Oh" notation, which I'm very familiar with, but rather by the function polylog(n). They're not talking about the complex analysis function <a href="http://en.wikipedia.org/wiki/Polylogarithm" rel="nofollow">Li<sub>s</sub>(Z)</a> I think. Or are they? Something totally different maybe?</p>
<p><b>More detail:</b><br/>
Mostly for personal interest, I've recently been looking over various papers on Compressed Suffix Arrays, e.g. <a href="http://www.springerlink.com/content/nacxj2hx2qvffk2e/" rel="nofollow">Advantages of Backward Searching -- Efficient Secondary Memory and Distributed Implementation of Compressed Suffix Arrays</a>. The computational complexity estimates stated sometimes involve polylog(n), which is a function I'm not familiar with.</p>
<p>Wikipedia gives a definition of <a href="http://en.wikipedia.org/wiki/Polylogarithm" rel="nofollow">polylog<sub>s</sub>(z)</a> which appears to mainly be about complex analysis and analytic number theory. My suspicion is that it's not related to the polylog(n) in the compression papers, though I'd love to hear otherwise from someone more knowledgeable. If this is the case, why exactly is it thought reasonable to omit the subscript?</p>
<p>My only other guess is that maybe O(polylog(n)) is supposed to mean "Asymptotic to a polynomial function of log(n)." But that's only a guess: I have no evidence of this, and it would be an abuse of notation to boot.</p>
<p>In any case, a link to a reasonably authoritative definition would be greatly appreciated!</p>
http://stackoverflow.com/questions/1798913/pattern-regex-based-searching-systems0Pattern (regex) based searching systemstearman2009-11-25T18:14:08Z2009-11-25T21:18:32Z
<p>I'm looking for a way to search through terabytes of data for patterns matching regexes. The implementation does need to support a lot of the finer capabilities of regexes, such as beginning and end of line data, full TR1 support (preferably with POSIX and/or PCRE support), and the like. We're effectively using this application to test policy regarding storage of potentially sensitive information.</p>
<p>I've looked into indexing solutions, but the majority of the commercial suites don't seem to have the finer regex capabilites we'd like (to date, they've all utterly failed at parsing the complex regexes we're using).</p>
<p>This is a complicated problem because of the sheer mass of the amount of data we have, and the amount of system resources we have to dedicate to the task of scanning (not much, its just checks on policy compliance, so there isn't much of a budget there for hardware).</p>
<p>I looked into Lucene but I'm a little hesitant about using index systems that aren't fully capable of dealing with our regex battery, and while searching through the entire dataset would remedy this problem, we'd have to let the servers chug along at performing these actions for a couple weeks at least.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1793776/how-do-i-increase-relevance-value-in-an-advanced-mysql-query0How do I increase Relevance value in an advanced MySQL query?morgant2009-11-24T23:49:00Z2009-11-25T16:20:17Z
<p>I've got a MySQL query similar to the following:</p>
<pre><code>SELECT *, MATCH (`Description`) AGAINST ('+ipod +touch ' IN BOOLEAN MODE) * 8 + MATCH(`Description`) AGAINST ('ipod touch' IN BOOLEAN MODE) AS Relevance
FROM products WHERE ( MATCH (`Description`) AGAINST ('+ipod +touch' IN BOOLEAN MODE) OR MATCH(`LongDescription`) AGAINST ('+ipod +touch' IN BOOLEAN MODE) )
HAVING Relevance > 1
ORDER BY Relevance DESC
</code></pre>
<p>Now, I've made the query more advanced by also searching for UPC:</p>
<pre><code>SELECT *, MATCH (`Description`) AGAINST ('+ipod +touch ' IN BOOLEAN MODE) * 8 + MATCH(`Description`) AGAINST ('ipod touch' IN BOOLEAN MODE) + `UPC` = '123456789012' * 16 AS Relevance
FROM products WHERE ( MATCH (`Description`) AGAINST ('+ipod +touch' IN BOOLEAN MODE) OR MATCH(`LongDescription`) AGAINST ('+ipod +touch' IN BOOLEAN MODE) ) AND `UPC` = '123456789012'
HAVING Relevance > 1
ORDER BY Relevance DESC
</code></pre>
<p>That'll return results, but the fact that I had a successful match on the UPC does not increase the value of <code>Relevance</code>. Can I only do that kind of calculation w/full text searches like MATCH() AGAINST()?</p>
<p><strong>Clarification:</strong> Okay, so my real question is, why does the following not have a Relevance >= 16?</p>
<pre><code>SELECT `UPC`, `UPC` = '123456789012' * 16 AS Relevance FROM products WHERE `UPC` = '123456789012' HAVING Relevance > 1 ORDER BY Relevance DESC
</code></pre>
http://stackoverflow.com/questions/618985/sql-server-2005-full-text-forum-search0SQL Server 2005 Full Text forum SearchGavin Draper2009-03-06T14:12:27Z2009-11-24T23:24:49Z
<p>I'm working on a search stored procedure for our existing forums.</p>
<p>I've written the following code which uses standard SQL full text indexes, however I'm sure there is a better way of doing it and would like a point in the right direction.</p>
<p>To give some info on how it needs to work, The page has 1 search text box which when clicked will search thread titles, thread descriptions and post text and should return the results with the title matches first, then descriptions then post data. </p>
<p>Below is what I've written so far which works but is not elegant or as fast as I would like. To give an example of performance with 20K threads and 80K posts it takes about 12 seconds to search for 5 random words.</p>
<pre><code>ALTER PROCEDURE [dbo].[SearchForums]
(
--Input Params
@SearchText VARCHAR(200),
@GroupId INT = -1,
@ClientId INT,
--Paging Params
@CurrentPage INT,
@PageSize INT,
@OutTotalRecCount INT OUTPUT
)
AS
--Create Temp Table to Store Query Data
CREATE TABLE #SearchResults
(
Relevance INT IDENTITY,
ThreadID INT,
PostID INT,
[Description] VARCHAR(2000),
Author BIGINT
)
--Create and populate table of all GroupID's This search will return from
CREATE TABLE #GroupsToSearch
(
GroupId INT
)
IF @GroupId = -1
BEGIN
INSERT INTO #GroupsToSearch
SELECT GroupID FROM SNetwork_Groups WHERE ClientId = @ClientId
END
ELSE
BEGIN
INSERT INTO #GroupsToSearch
VALUES(@GroupId)
END
--Get Thread Titles
INSERT INTO #SearchResults
SELECT
SNetwork_Threads.[ThreadId],
(SELECT NULL) AS PostId,
SNetwork_Threads.[Description],
SNetwork_Threads.[OwnerUserId]
FROM
SNetwork_Threads
INNER JOIN SNetwork_Groups ON SNetwork_Groups.GroupId = SNetwork_Threads.GroupId
WHERE
FREETEXT(SNetwork_Threads.[Description], @SearchText) AND
Snetwork_Threads.GroupID IN (SELECT GroupID FROM #GroupsToSearch) AND
SNetwork_Groups.ClientId = @ClientId
--Get Thread Descriptions
INSERT INTO #SearchResults
SELECT
SNetwork_Threads.[ThreadId],
(SELECT NULL) AS PostId,
SNetwork_Threads.[Description],
SNetwork_Threads.[OwnerUserId]
FROM
SNetwork_Threads
INNER JOIN SNetwork_Groups ON SNetwork_Groups.GroupId = SNetwork_Threads.GroupId
WHERE
FREETEXT(SNetwork_Threads.[Name], @SearchText) AND
Snetwork_Threads.GroupID IN (SELECT GroupID FROM #GroupsToSearch) AND
SNetwork_Groups.ClientId = @ClientId
--Get Posts
INSERT INTO #SearchResults
SELECT
SNetwork_Threads.ThreadId,
SNetwork_Posts.PostId,
SNetwork_Posts.PostText,
SNetwork_Posts.[OwnerUserId]
FROM
SNetwork_Posts
INNER JOIN SNetwork_Threads ON SNetwork_Threads.ThreadId = SNetwork_Posts.ThreadId
INNER JOIN SNetwork_Groups ON SNetwork_Groups.GroupId = SNetwork_Threads.GroupId
WHERE
FREETEXT(SNetwork_Posts.PostText, @SearchText) AND
Snetwork_Threads.GroupID IN (SELECT GroupID FROM #GroupsToSearch) AND
SNetwork_Groups.ClientId = @ClientId
--Return Paged Result Sets
SELECT @OutTotalRecCount = COUNT(*) FROM #SearchResults
SELECT
#SearchResults.[ThreadID],
#SearchResults.[PostID],
#SearchResults.[Description],
#SearchResults.[Author]
FROM
#SearchResults
WHERE
#SearchResults.[Relevance] >= (@CurrentPage - 1) * @PageSize + 1 AND
#SearchResults.[Relevance] <= @CurrentPage*@PageSize
ORDER BY Relevance ASC
--Clean Up
DROP TABLE #SearchResults
DROP TABLE #GroupsToSearch
</code></pre>
<p>I know its a bit long winded but just a nudge in the right direction would be well appreciated.</p>
<p>Incase it helps 80% of the query time is taken up when search posts and according to teh query plan is spent on "Clustered Index Scan" on the posts table. I cant see anyway around this.</p>
<p>Thanks</p>
<p>Gavin</p>
http://stackoverflow.com/questions/1186741/enterprise-search-engine-development-asking-for-advice1enterprise search engine development asking for adviceGeorge22009-07-27T06:38:48Z2009-11-24T20:22:56Z
<p>Hello everyone,</p>
<p>I am asked to either deploy or develop an enterprise (intranet) search engine which could index all web pages of a couple of internal servers, and have a search portal to display all related content, like what Google is doing but for intranet.</p>
<p>Any advice how to develop or deploy quickly? I have heard of Microsoft FAST product, not sure whether it is for this purpose?</p>
<p>thanks in advance,
George</p>
http://stackoverflow.com/questions/1788413/implementing-proximity-operators-in-full-text-search0Implementing proximity operators in full-text searchMakis2009-11-24T07:21:11Z2009-11-24T07:21:11Z
<p>Some databases (e.g. Scopus and Web of Science) implement proximity operators such as SAME or NEAR. With these the user can define that he wants his search words to be within a set number of words from each other or in the same sentence or paragraph.</p>
<p>I just started wondering how this is implemented. Full-text search as is is not that complex but how is the indexing done to make proximity searches feasible. The databases I have tried have hundreds of thousands of articles so obviously they have been indexed, but if you try to use the same tactic as with normal full-text search (as I understand they have been implemented) the size of the index would be impractically large.</p>
<p>So, how is this done?</p>
http://stackoverflow.com/questions/1781455/sphinx-delta-indexing-still-necessary-to-rebuild-the-main-index1Sphinx delta indexing -- still necessary to rebuild the main index?Ethan2009-11-23T06:39:48Z2009-11-23T08:06:55Z
<p>I've been reading up on the Sphinx search engine and the Thinking Sphinx gem. In the TS <a href="http://freelancing-god.github.com/ts/en/deltas.html" rel="nofollow">docs</a> it says...</p>
<blockquote>
<p>Sphinx has one major limitation when compared to a lot of other search services: you cannot update the fields [of] a single document in an index, but have to re-process all the data for that index.</p>
</blockquote>
<p>If I understand correctly, that means when a user adds or edits something, the change is not reflected in the index. So if they add a record it won't come up in searches until the entire index is rebuilt. Or if they delete a record, it <strong>will</strong> come up in searches, and then cause some kind of error or frustrating behavior.</p>
<p>Moreover, while rebuilding the index Sphinx is shut down. So, your app's search functionality goes off line regularly (once an hour, once every few hours), and anyone who tries to do a search then will get an error or a "try later" message.</p>
<p>OK, clearly none of that is acceptable in real-world app. So you pretty much have to use delta indexing.</p>
<p>But apparently you still need to regularly shut down your search engine and do a full indexing...</p>
<blockquote>
<p>Turning on delta indexing does not remove the need for regularly running a full re-index, as otherwise the delta index itself will grow to become just as large as the core indexes, and this removes the advantage of keeping it separate. It also slows down your requests to your server that make changes to the model records.</p>
</blockquote>
<p>I don't really understand what the docs are saying here. Maybe someone can help me out. I thought the whole point of delta indexing was that you <strong>don't</strong> need to regularly rebuild the index. It's updated instantly whenever the data changes.</p>
<p>Because rebuilding the index every hour or every anything would be totally messed up, right?</p>
http://stackoverflow.com/questions/1767814/querying-multiple-index-in-django-sphinx0Querying multiple index in django-sphinxSaurabh2009-11-20T01:43:22Z2009-11-22T20:29:21Z
<p>The django-sphinx documentation shows that django-sphinx layer also supports some basic querying over multiple indexes.</p>
<p><a href="http://github.com/dcramer/django-sphinx/blob/master/README.rst" rel="nofollow">http://github.com/dcramer/django-sphinx/blob/master/README.rst</a></p>
<pre><code>from djangosphinx.models import SphinxSearch
SphinxSearch('index1 index2 index3').query('hello')
</code></pre>
<p>It seems SphinxSearch does not contain the function query(). I also tried to include content_type in sphinx.conf sql_query configuration as mentioned in the django-sphinx documentation. Nothing has worked.</p>
<pre><code>Traceback (most recent call last):
File "<console>", line 1, in <module>
AttributeError: 'SphinxSearch' object has no attribute 'query'
</code></pre>
<p>Can anybody throw light on how I could get ranked results from multiple indexes in sphinx</p>
http://stackoverflow.com/questions/1778094/why-does-full-text-search-get-this-result0Why does Full Text Search get this result?Darsh2009-11-22T07:23:28Z2009-11-22T07:56:38Z
<p>A Full-Text query like this one:</p>
<pre><code>SELECT *
FROM TABLE1
WHERE CONTAINS(COL1,'"x* ray*"')
</code></pre>
<p>gets all rows containing any combination of x and ray but not one without the other.
If we modified the query this way</p>
<pre><code>SELECT *
FROM TABLE1
WHERE CONTAINS(COL1,'"x* ray* "') --With a space after ray*
</code></pre>
<p>it gets all rows not only containing any combination of x and ray but also all rows containing ray without x
what is wrong with the space at the end.</p>
<p>Thank you for any help.</p>
http://stackoverflow.com/questions/1776408/mysql-per-found-record-join-a-different-parent-table0MySQL, per found record join a different parent table.Niels Bom2009-11-21T19:04:20Z2009-11-22T07:02:34Z
<p>I have the following parent <-> child datamodel:</p>
<p>(almost every line is a table, indented means child-of)</p>
<pre><code>consumerGoods
food
meat
item
fruit
item
vegetable
item
</code></pre>
<p>The child-items of meat, fruit and vegetables are in the same table (named items) because they have identical attributes. In the items table I have fields that describes the parent and the parentId.</p>
<p>So an item record could be:</p>
<pre><code>id:1
parentType:meat
parentId:4
price:3.25
expDate:2009-12-31
description:bacon
</code></pre>
<p>I'm now building a full text MySQL search for the contents of the description field in "items", but I also want each result to have the information of its parent table, so a "bacon-item" has the data that's in its parent record. I also want each returned result to have data that is in the parent food record and the parent consumerGoods record.</p>
<p>I've got the following query now, but I don't know how to join based on the value of a field in a record, or if that's even possible.</p>
<p>SELECT
*
FROM
item
WHERE MATCH
(description
AGAINST
('searchKey')</p>
<p>One way to do this is is to do multiple queries for each matching "item" record, but if I had a lot of results that would be a lot of queries and would also slow down any filtering I'd want to do for facet-based searching. Another option is to make a new table that contains all the parent item info for each item record and search through that, but then I'd have to constantly update that table if I add item records, which is redundant and quite some work.</p>
<p>I'd like to hear it if I'm thinking in the right direction, or if I'm totally misguided. Any suggestions welcome.</p>
http://stackoverflow.com/questions/1777060/what-linux-full-text-indexing-tool-has-a-good-c-api0What Linux Full Text Indexing Tool Has A Good C++ API?Joe Soul-bringer2009-11-21T22:51:07Z2009-11-22T01:01:09Z
<p>Hi, </p>
<p>I'm looking to add full text indexing to a Linux desktop application written in C++. I am thinking that the easiest way to do this would be to call an existing library or utility. <a href="http://www.freesoftwaremagazine.com/columns/desktop%5Fsearch%5Ftools%5Fgnu%5Flinux%5Ftracker%5Frecoll%5Fstrigi%5Fdeskbar" rel="nofollow">This article</a> reviews various open source utilities available for the Gnome and KDE desktops; metatracker, recoll and stigi are all written in C++ so they each seem reasonable. But I cannot find any notable documentation on how to use them as libraries or through an API. I could, instead, use something like <a href="http://clucene.sourceforge.net/" rel="nofollow">Clucene</a> or <a href="http://xapian.org/" rel="nofollow">Xapian</a>, which are generic full text indexing libraries. They seem more straightforward but if I used them, I'd have to implement my own indexing daemon, an unappealing prospect. </p>
<p>Also, <a href="http://xesam.org/" rel="nofollow">Xesam</a> seems to be the latest thing, does anyone have any evidence that it works?</p>
<p>So, does anyone have experience using any of the applications or libraries? How did you use it and what documentation was useful?</p>
http://stackoverflow.com/questions/1776886/access-to-path-denied-vb-net1Access to Path Denied - Vb.NetKevin2009-11-21T21:40:16Z2009-11-22T00:00:12Z
<p>Hey guys,</p>
<p>I have this small file search engine here made in VB.NET:
ListBox1.Items.Clear()
ListBox3.Items.Clear()</p>
<pre><code> ChDir("C:\")
Try
For Each foundFile As String In My.Computer.FileSystem.GetFiles( _
My.Computer.FileSystem.CurrentDirectory, _
FileIO.SearchOption.SearchAllSubDirectories, TextBox4.Text & "*.*")
ListBox1.Items.Add(foundFile)
ListBox3.Items.Add(foundFile)
Next
Catch ex As UnauthorizedAccessException
MsgBox("Could not access file or not enough priveledges")
End Try
</code></pre>
<p>It searches through your whole C:\ for the file you entered. Although the problem I get is that some directories get access denied or not existing directories. How can I fix this problem?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/287133/retrieving-sql-server-full-text-index-terms2Retrieving SQL Server Full Text Index termsfriism2008-11-13T14:51:55Z2009-11-20T22:00:32Z
<p>Using Lucene, one can retrieve the terms contained within in an index, i.e. the unique, stemmed words, excluding stop-words, that documents in the index contain. This is useful for generating autocomplete suggestions amongst other things. Is something similar possible with MS SQL Server full text indices?</p>
http://stackoverflow.com/questions/918607/most-efficient-design-to-search-for-this-data-in-my-database0Most efficient design to search for this data in my database?Pure.Krome2009-05-28T00:19:06Z2009-11-20T17:19:33Z
<p>Hi folks,</p>
<p>I have the following database tables and a view which <em>represents</em> that data. The tables are <em>heirachial</em> (if that is how u describe it) :-</p>
<blockquote>
<p>EDIT: I've replace my 3 tables with
FAKE table names/data (for this post)
because I'm under NDA to not post
anything about out projects, etc. So
yeah.. I don't really save people
names like this :)</p>
</blockquote>
<h3>FirstNames</h3>
<pre><code>FirstNameId INT PK NOT NULL IDENTITY
Name VARCHAR(100)
</code></pre>
<h3>MiddleNames</h3>
<pre><code>MiddleNameId INT PK NOT NULL IDENTITY
Name VARCHAR(100) NOT NULL
FirstNameId INT FK NOT NULL
</code></pre>
<h3>Surnames</h3>
<pre><code>SurnameId INT PK NOT NULL IDENTITY
Name VARCHAR(100) NOT NULL
FirstNameId INT FK NOT NULL
</code></pre>
<p>So, the firstname is the parent table with the other two tables being children.</p>
<p>The view looks like...</p>
<h3>PersonNames</h3>
<pre><code>FirstNameId
FirstName
MiddleNameId
MiddleName
SurnameId
Surname
</code></pre>
<p>Here's some sample data.</p>
<pre><code>FNID FN MNID MN SNID SN
-----------------------------------
1 Joe 1 BlahBlah 1 Blogs
2 Jane - - 1 Blogs
3 Jon - - 2 Skeet
</code></pre>
<p>Now here's the problem. <strong>How can i efficiently search for names on the view</strong>? I was going to have a Full Text Search/Catalogue, but I can't put that on a view (or at least I can't get it working using the GUI against a View).</p>
<p>EDIT #2: Here are some sample search queries :-</p>
<pre><code>exec uspSearchForPeople 'joe blogs' (1 result)
exec uspSearchForPeople 'joe' (1 result)
exec uspSearchForPeople 'blogs' (2 results)
exec uspSearchForPeople 'jon skeet' (1 result)
exec uspSearchForPeople 'skeet' (1 result)
</code></pre>
<p>Should i generate a new table with the full names? how would that look? </p>
<p>please help!</p>
http://stackoverflow.com/questions/1762846/ruby-on-rails-ebay0ruby on rails ebayshaun2009-11-19T12:06:36Z2009-11-19T12:06:36Z
<p>does any one now the code for the search function on ebay, in particular the ebay suggestion function
thanks</p>
http://stackoverflow.com/questions/1759359/adding-search-to-ruby-on-rails-easy-question1Adding Search to Ruby on Rails - Easy Questionbgadoci2009-11-18T21:54:29Z2009-11-18T23:41:17Z
<p>I am trying to figure out how to add search to my rails application. I am brand new so go slow. I have created a blog and done quite a bit of customizing including adding some AJAX, pretty proud of myself so far. I am having trouble finding any good tutorials about how to add this functionality. Basically I just want to enable a full search to search my posts table. What is the easiest way to do this?</p>
http://stackoverflow.com/questions/1756302/sql-server-full-text-search-error-full-text-crawl-manager-has-not-been-initializ0SQL Server full text search error: Full-text crawl manager has not been initialized.Greg Beech2009-11-18T14:18:40Z2009-11-18T14:18:40Z
<p>I'm just trying out full text search in SQL Server 2008 and am failing at the first hurdle. I've created an index, but when I try to populate it using:</p>
<pre><code>ALTER FULLTEXT INDEX ON TableName SET CHANGE_TRACKING AUTO;
</code></pre>
<p>I get the following error:</p>
<blockquote>
<p>Msg 7644, Level 17, State 1, Line 1</p>
<p>Full-text crawl manager has not been initialized. Any crawl started before the crawl manager was fully initialized will need to be restarted. Please restart SQL Server and retry the command. You should also check the error log to fix any failures that might have caused the crawl manager to fail.</p>
</blockquote>
<p>Obviously I've tried restarting SQL Server, but still get the same message.</p>
<p>I found a <a href="http://support.microsoft.com/kb/961662" rel="nofollow">KB article for SQL Server 2005</a> about an invalid <code>FTSGroup</code> registry key but I can't find any indication that this also applies to SQL Server 2008, my feeling is that it probably doesn't.</p>
<p>Anybody know what's wrong and how to fix this issue?</p>
http://stackoverflow.com/questions/1754481/how-to-search-categorywise-in-the-web-are-there-any-categorysearch-search-engine0How to search categorywise in the web? are there any categorysearch search enginesharsha2009-11-18T08:35:34Z2009-11-18T09:02:40Z
<p>Example: I want to search results only from the research papers
or I want to search results only from opensource tools/packages/codes
Kindly help me</p>