Can I search for multiple words using RedGate's SQL Search? - redgate

I want to do this:
I know I can search for an exact match for one word but I want to be able to search for multiple words in the same object. Is that possible?

Not yet.
We are currently prioritizing the next set of work on SQL Search.
Please vote or comment on our UserVoice forum for updates on this specific feature request:
https://redgate.uservoice.com/forums/101149-sql-search/suggestions/1493729-allow-or-and-not-searches
Thanks!

Related

How to search github issues which does not have a particular label

I want to retrieve list of GitHub issue, which does not have "label_A".
What is should be the query part I need to be added to the searching bar.
Try adding this -label:"<label-name>" into user searching query.
-label:"label_A"

How to search on GitHub with OR/AND operators

How can I search an issue on GitHub that contains keywords "java" AND ("python" OR "C++")? Is it possible to represent a search with these logical operators like OR/AND?
It turns out GitHub does not provide functions to achieve the searching logics like ANR/OR. The solution I figured out is to write a crawler that implements the searching logics.
Well, GitHub does not work like StackOverflow, but there are some ways to achieve what you want to accomplish. Start by using the type label, like this type:issue, then you can use the in qualifier, like this python in:title,body, which will search titles that contain the word python. Here is a more detailed (reference) of GitHub's Docs, which might help you with your issue.
I hope this helps you, but as much as I searched I could not find conditional search features on GitHub's search, but there are some pretty useful labels (qualifiers) that you can benefit from.

In Github, how to search repositories with multiple keywords?

Github search example
I want to search these repositories which's title contain 'keyword-1' or 'keyword-2' or 'keyword-3'.
I have read the Github search help documents and search api documents, But I still have no idea how to search with multiple keywords.
Thanks.
I think the best way to do that is the way you are demonstrating. I mean just use the tags separated by simple space. I have just tested that the first repositories that are shown are those containing all the tags that I am searching. Give it a try, it must be working just fine
for now you can use curl and jq to achieve this. Check out this gist

Search "ALL" public events using Facebook graph search API

Although this question has been asked before but that was an year before and not exactly what I wanted to ask. So, here it goes:
I am using https://graph.facebook.com/search?q=conference&type=event to find all the events having a keyword "conference".
Question 1: I just get one page of results and the pagination link at the bottom of the page yield to a page with no data (just some structure). However, searching from my facebook I can see many many more events. How can I search for "ALL" (or a considerable number of events say 200+) ?
Question 2: In case, if the search results are limited how can I restrict to events from just one country. So, for example I am only interested in conferences that are in US and not the ones in Europe. How do I do that?
Question 3: How do I search for multiple keywords. Say I want to search for "conferences AND data".
I would appreciate your help.
Thanks
P
To search for multiple keywords, use "+". In this case "conferences+data".
about Question 1: note that q=conference means that you are searching for events with keyword conference in them. You are not searching events by category. If you want to search for all events you can use q=*, this will give you ALL public facebook events. They will not be filtered by location/distance. I have tried to limit the search by location & distance, but so far without any success.
add &limit=200 to your query string

Google like autosuggest with Solr

I'm currently using Solr with Terms Component and Jquery Autosuggest which works quiet good. However, this construct is limited to one autosuggest word (it autocompletes only the first word). Is it possible to implement a Google like autosuggest with multiple words/terms so i can autocomplete multiple words?
I just wrote a blog post about different ways to make auto complete suggestions with Solr. It's basically a comparison of some different strategies, check it out, it might help.
If you want to make multiple terms suggestions, it turns out you should use, as already mentioned in the other answer you got, the Suggester component available in Solr starting from the 3.1 version. Since it has some limitations, you can also have a look at the ShingleFilterFactory, which generates token NGrams. It creates combination of tokens as a single token, that's useful to suggest multiple words.
You can also use SpellCheckComponent for better auto complete suggests.
See http://wiki.apache.org/solr/Suggester for details.
Edit:
Refer here for solr5 and above
Check this out, it might help
http://www.lucidimagination.com/blog/2009/09/08/auto-suggest-from-popular-queries-using-edgengrams/
I worked out the same task, finally got solved using TermsComponent with multiple fields. check this link. http://lucene.472066.n3.nabble.com/auto-completion-search-with-solr-using-NGrams-in-SOLR-td3998559i20.html