0
votes
0answers
19 views
SQL Full Text search on HTML/XML data
I have a sql full text catalog on a cms database (SQL 2005). The database holds the CMS page content within a ntext column which is part of the full text catalog. As expected the searching takes into …
2
votes
3answers
21 views
Full Text Searching in Apple’s Core Data Framework
I would like to implement a full text search in an iPhone application. I have data stored in an sqlite database that I access via the Core Data framework. Just using predicates and ORing a bunch of …
0
votes
1answer
26 views
How to format keywords in SQL Server Full Text Search
I have a sql function that accepts keywords and returns a full text search table.
How do I format the keyword string when it contains multiple keywords? Do I need to splice the string and insert …
0
votes
2answers
18 views
Fine tuning this mysql search-function in PHP…
I have a classifieds website, where users can search for items.
The search should be in all fields with the name 'description' and 'headline'.
I am currently using 'like' syntax (SELECT * FROM db …
0
votes
1answer
27 views
Full Text Search: Noise words are being searched for
Hi,
I have a database in SQL Server 2008 with Full Text Search indexes. I have defined the Stopword 'al' in the Stoplist. However, when I search for any phrase with the keyword 'al', the word 'al' is …
0
votes
0answers
15 views
Lucene .NET 2.3.2 Security Exception - Medium trust Issues
I'm only partially able to get Lucene .NET to work on GoDaddy. It throws a security exception on this line:
Hits hits = searcher.Search(query, filter);
Here are the details of this exception:
…
0
votes
0answers
12 views
Python SQLite FTS3 alternatives?
Are there any good alternatives to SQLite + FTS3 for python?
I'm iterating over a series of text documents, and would like to categorize them according to some text queries. For example, I might want …
0
votes
0answers
23 views
Sql FullText ranking problem
Select b.Title, KEY_tbl.rank from BibliographicRecords b
INNER JOIN CONTAINSTABLE (dbo.BibliographicRecords, Other,
N'"Rudens" OR "leģendas"')
AS KEY_TBL
ON b.Id = …
1
vote
2answers
29 views
what are the fastest/Popular search technologies
What are the fastest search technologies apart from Relational DB Searches ?
I have a collection of Text Files from varied sources (Banks/Ledgers/Stock Markets). Each line in these Text Files is a …
1
vote
1answer
19 views
How do you boost term relevance in Sql Server Full Text Search like you can in Lucene?
I'm doing a typical full text search using containstable using 'ISABOUT(term1,term2,term3)' and although it supports term weighting that's not what I need. I need the ability to boost the relevancy …
0
votes
1answer
32 views
FTS: Searching across multiple fields ‘intelligently’
Hi,
I have a SP using FTS (Full Text Search). I want searches across multiple fields, 'intelligently' ranking results based on the weights I assign.
Consider a search on a view fetching data from …
0
votes
1answer
17 views
Retrieving the most common keywords from a tsvector column
I'm considering adding a tsvector column to an existing table that will hold possible search terms for multiple columns in that same table (e.g. the tsvector column will equal to_tsvector(header || ' …
0
votes
2answers
22 views
Search filenames in MySQL database table restricted by filetype?
Hello
I have a MySQL database that I replicate from another server. The database contains a table with this columns
ID, FileName and FileSize
In the table there are more than 4'000'000 records. I …
0
votes
1answer
25 views
Can MySQL fulltext search be adapted to search for partial words?
I implemented MySQL fulltext search and worked perfect.
Now the client wants that partial matches be found by the search, for example the term 'base' should match 'database'.
I know the whole idea of …
0
votes
1answer
40 views
SQL Server 2008 extremely slow using FTS on joined tables
I have two tables
Product (id int, brandid int,Name nvarchar(1000)) 2+ million rows
Brand (id int,name nvarchar(1000)) 20k rows
FullText index is enabled on both table's name field.
If I do a …
