On 2 November 2012 09:51, Romita Saha <romita.s...@sg.panasonic.com> wrote: > > Hi, > > I am trying to search a database . In my database I have a field level2. > > My query: > http://localhost:8983/solr/db/select/?defType=dismax&q=search%20level2&qf=data%20id^2%20&start=0&rows=11&fl=data,id
Where did you get this syntax from? If you want to search just on the field level2, you should have: http://localhost:8983/solr/db/select/?q=term&defType=dismax&qf=level2 where "term" is your search term. (I have omitted boosts, and extra parameters.) Regards, Gora