1
vote
4answers
43 views
efficiency of SQL ‘LIKE’ statement with large number of clauses
I need to extract information from a text field which can contain one of many values. The SQL looks like:
SELECT fieldname
FROM table
WHERE bigtextfield LIKE '%val1%'
OR bigtex …
2
votes
5answers
53 views
Best way of searching through a DataGridView in VB.NET?
Hi peeps,
On my form there is a datagridview that may get upwards to about 70k items depending on how scan happy our customers get. I also have a textbox which allows the user to …
1
vote
1answer
32 views
Storing relational data in a Lucene.NET index
I'm currently trying to implement a Lucene.NET based search on a large database and I've hit a snag trying to do a search on what is essentially relational data.
At a high level t …
0
votes
0answers
16 views
Trouble searching for acronyms in Lucene.NET
I'm currently working on a Lucene.NET full-text search implementation. For the most part it's going quite well but I'm having a few issues revolving around acronyms in the data...
…
0
votes
1answer
49 views
Google Mini only serving linking pages
I have a peculiar error in our Google Mini box. The setup is as simple as it can be.
Google Mini is set to crawl a specific site and only that site.
We have only the default fron …
0
votes
7answers
130 views
What’s the best way to implement a search?
I've got a requirement where a user enters a few terms into a search box and clicks "go".
Does anyone have any good resources on how to implement a dynamic search that spans a few …
1
vote
1answer
31 views
Needed an efficient way for search for the following specfic requirement
I have to search a given file name (let say Keyword) in a directory containing files. If there were only few keywords to be searched, I could have used regular search (like creati …
0
votes
1answer
54 views
searching social networking
How can I organize a search in a social network web application? Searching is done by full name. I want to use stored procedures. Is it the best sollution? What algorithm can be us …
0
votes
1answer
51 views
WPF - Filtering/Searching multiple collection views within a treeview
I have a treeview that is bound to a collection and each item in the collection is bound to another collection. (using hierachle data templates)
I would like to use the collection …
4
votes
8answers
402 views
Code Challenge: 2D Array Search
Ok this one is like my previous array searching challenge but with a twist.
You must build a function to search one 2d array (or suitable equivalent in your language) of 32-bit in …
0
votes
4answers
88 views
searching within nested list in python
I have a list:
l = [['en', 60, 'command'],['sq', 34, 'komand']]
I want to search for 'komand' or 'sq' and get l[1] returned.
Can I somehow define my own matching function for l …
8
votes
35answers
1k views
Array Searching code challenge
Here's my (code golf) challenge:
Take two arrays of bytes and determine if the second array is a substring of the first. If it is, output the index at which the contents of the sec …
1
vote
3answers
39 views
Free web-based solution for intranet document search engine ?
Hello,
Here is the situation : we have to offer a customer with a web-based search engine that will make a search for a given string inside a list of documents whose paths are log …
0
votes
2answers
41 views
SQL question regarding searching for data from multiple tables
I have 2 tables containing information that i want to search for, a main table, and a comments table. The main table contains timestamps, subjects, etc. While the comments table ho …
0
votes
1answer
79 views
Real-World Scheme OOP Programs?
I am working on a sort of "bug finder" for Scheme (R5RS) and I want to try if and how well it would work for object-oriented programming. Therefore I was looking at some of the num …
