0
votes
1answer
14 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
11 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
1answer
23 views
Full text search on a bound DataGridView control
Hello all,
I cannot seem to be able to find a way to do a full text search on a databound DataGridView control across the entire breath of its columns and rows.
The DataTable and DataView objects …
0
votes
1answer
37 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 …
0
votes
1answer
17 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 …
-1
votes
3answers
86 views
Find and replace multiple strings in file then output to new filename python
I am looking to create a python script that will read one source file then produce another file with a string for the name.
for example
macaddress.cnf.xml contains the source file
I need to …
1
vote
2answers
24 views
Full-text search across concatenated columns?
I'm new to free-text search, so pardon the newbie question. Suppose I have the following full-text index:
Create FullText Index on Contacts(
FirstName,
LastName,
Organization
)
Key Index …
1
vote
2answers
45 views
SQL Server: How to order by date, if the date is < GetDate()
Hi,
Here's an interesting one... hope I can explain it well...
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. …
0
votes
3answers
29 views
SQL Server 2008 CTE And CONTAINSTABLE Statement - Why the error?
I am testing out moving our database from SQL Server 2005 to 2008. We use CTE's for paging.
When using full-text CONTAINSTABLE, the CTE will not run and generates an error.
Here's my non-working …
0
votes
1answer
19 views
SOLR - delta import not with last_modified
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 …
0
votes
0answers
10 views
SQL Server FullText Search (Windows Service) - Failure
Hi all,
I've been asked to look at a server issue but for some reason I am unable to track down the cause.
Basically, they have SQL Server 2005 (Workgroup Ed) that has a number of databases running. …
0
votes
1answer
16 views
Full-text index population performance on a SQL 2005 indexed view
I have created an indexed view:
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 …
0
votes
2answers
21 views
SQL Server Fulltext - multiple columns
Hi All,
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.
I have 2 columns, First and Last name. I want to support …
1
vote
6answers
102 views
What is the meaning of O( polylog(n) )? In particular, how is polylog(n) defined?
Brief:
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). …
0
votes
5answers
61 views
Pattern (regex) based searching systems
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 …
