RE: Fulltext searching

2004-05-08 Thread emierzwa
I beleive this is the built-in word list file you were looking for. And the word beyond was in the list. It would probably be helpful if there were a SHOW command that listed the active built-in stopwords. Ed - #include ftdefs.h ulong ft_min_word_len=4; ulong

RE: Fulltext searching

2004-05-06 Thread Dathan Vance Pattishall
Check to see if beyond is in your stopword file. -Original Message- From: Richard Baskett [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 2:12 PM To: MySQL Subject: Fulltext searching Ok having some problems with MySQL's fulltext search. I have the fields that I need

Re: Fulltext searching

2004-05-06 Thread Richard Baskett
In my system variables it shown that the stopword file is (built-in) so where would I find it then if it is built in.. 'Beyond does not seem like a word that would be in a built-in stopword file does it? Could it be reserved? Thanks! Rick on 5/6/04 15:30, Dathan Vance Pattishall at [EMAIL

Re: Fulltext searching

2004-05-06 Thread Michael Stassen
If you've built from source, the stopwords are in path-to-source/myisam/ft_static.c In my copy of 4.0.18, beyond is in the list. You can create your own stopword list, or turn off stopwords altogether, if you want. See http://dev.mysql.com/doc/mysql/en/Fulltext_Fine-tuning.html for the

Re: Fulltext searching

2004-05-06 Thread Richard Baskett
on 5/6/04 16:53, Michael Stassen at [EMAIL PROTECTED] wrote: If you've built from source, the stopwords are in path-to-source/myisam/ft_static.c In my copy of 4.0.18, beyond is in the list. You can create your own stopword list, or turn off stopwords altogether, if you want. See

Re: fulltext searching

2003-08-14 Thread Roger Baklund
* m n I have the following table with just one record! And when I do a select statement, mysql returns no hits!!! Would you explain to me what is wrong?? You have only one row. URL: http://www.mysql.com/doc/en/Fulltext_Search.html For very small tables, word distribution does not reflect

Re: fulltext searching

2003-08-14 Thread Victoria Reznichenko
m n [EMAIL PROTECTED] wrote: How fulltext is working!!? From the MySQL manual: The search for the word MySQL produces no results in the above example, because that word is present in more than half the rows. As such, it is effectively treated as a stopword (that is, a word with zero semantic

Re: fulltext searching

2003-08-14 Thread Roger Baklund
* m n [...] SELECT * FROM `mytest` WHERE (MATCH (sub) against (my)); ... and short (default 4 characters) words are not indexed... URL: http://www.mysql.com/doc/en/Fulltext_Fine-tuning.html -- Roger -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To

Re: FULLTEXT Searching

2003-08-01 Thread Cybot
Ralph Guzman wrote: I have to do a catalog search through multiple tables and columns for product model number, description, and name. I realize that doing pattern matching with multiple LIKE statements is slow so I found that FULLTEXT searches is a better alternative. I have added a FULLTEXT

Re: FULLTEXT Searching

2003-08-01 Thread Victoria Reznichenko
Ralph Guzman [EMAIL PROTECTED] wrote: I have to do a catalog search through multiple tables and columns for product model number, description, and name. I realize that doing pattern matching with multiple LIKE statements is slow so I found that FULLTEXT searches is a better alternative. I

RE: fulltext searching and query order question

2003-06-13 Thread Mike Hillyer
Have you tried adding force index on your fulltext index? Something similar to this: select field1,field2,field3 from table FORCE INDEX(index2) where field1='something' and field2='something_else' and field3='something_more' and match(field4) against ('word1 word2' in boolean mode)

RE: fulltext searching and query order question

2003-06-13 Thread H M Kunzmann
I think I need to clarify : The fulltext indexing searching here works great. The search completes in good time, but then I want it in a different order, as described by index1 down below. This resorting step is the one that takes forever, not the fulltext search. So essentially, a FORCE

re: Fulltext searching - getting list of stop words?

2002-09-19 Thread Egor Egorov
Tim, Thursday, September 19, 2002, 1:09:42 PM, you wrote: TF I'm implementing a search feature on one of my sites and I would like TF to have a Google-style X is a very common word and was not included TF in your search for stop words. I believe the stop words in fulltext TF searching are

Re: fulltext searching / BUG report

2002-07-27 Thread Marko Djukic
sergei, no i meant loading it up from raw data again. in the sense, i empty the database, then i have a script which takes a directory full of files and reads them into the database. each time i do that the database ends up corrupted. is there any way to figure out where the corruption is? is

RE: fulltext searching

2002-07-02 Thread Erlend Hopsø Strømsvik
seem to work a lot better with the 4.0.2. And it won't crash with special combinations of words :) Erlend Stromsvik -Original Message- From: Marko Djukic [mailto:[EMAIL PROTECTED]] Sent: 1. juli 2002 12:43 To: [EMAIL PROTECTED] Subject: Re: fulltext searching hi all... i can't seem

Re: fulltext searching

2002-07-02 Thread Eivind A. Sivertsen
Is there a tutorial or step-by-step introduction to fulltext searches with MySQL somewhere? Regards, Eivind :-o sql, query - Before posting, please check: http://www.mysql.com/manual.php (the manual)

Re: fulltext searching

2002-07-02 Thread Marko Djukic
section 6.8 in the manual i think... Quoting Eivind A. Sivertsen [EMAIL PROTECTED]: Is there a tutorial or step-by-step introduction to fulltext searches with MySQL somewhere? Regards, Eivind :-o sql, query

RE: fulltext searching

2002-07-02 Thread Peter Lovatt
Hi If anybody from mysql is listening / watching, www.mysql.com is down, and has been for a while. Peter --- Excellence in internet and open source software --- Sunmaia www.sunmaia.net [EMAIL PROTECTED]

Re: fulltext searching

2002-07-02 Thread Eivind A. Sivertsen
section 6.8 in the manual i think... Hmm, no; that's about the access privilege system... I found it in section 24.2, but I feel this topic has gotten a bit scarce mention in the manual. Perhaps it deserves more than that...? I sure would appreciate something extra :-) Best regards,

Re: Re: fulltext searching

2002-07-02 Thread Egor Egorov
Eivind, Tuesday, July 02, 2002, 12:22:33 PM, you wrote: EAS Is there a tutorial or step-by-step introduction to fulltext searches with EAS MySQL somewhere? Sure. In the MySQL manual: http://www.mysql.com/doc/F/u/Fulltext_Search.html -- For technical support contracts, goto

Re: fulltext searching

2002-07-02 Thread Marko Djukic
there's not a huge lot more to cover than what is in the manual... what exactly are you looking for? m. Quoting Eivind A. Sivertsen [EMAIL PROTECTED]: section 6.8 in the manual i think... Hmm, no; that's about the access privilege system... I found it in section 24.2, but I feel this

Re: fulltext searching

2002-07-02 Thread Marko Djukic
plus are you sure you're reading the latest manual? it is chapter 6.8. try this (google cache of the mysql.com/doc since mysql.com seems to be down): http://www.google.com/search?q=cache:yvsB86pbs5cC:www.mysql.com/doc/F/u/Fulltext_Search.html+full+text+mysqlhl=enie=UTF-8 ciao, m. Quoting

RE: fulltext searching / BUG report

2002-07-02 Thread Thomas Spahni
On Tue, 2 Jul 2002, Erlend Hopsø Strømsvik wrote: Download the 4.0.2 source and compile it. Things seem to work a lot better with the 4.0.2. And it won't crash with special combinations of words :) Hi, Some things with BOOLEAN MODE seem still broken. Especially the '*' jokers. I have

Re: fulltext searching

2002-07-02 Thread Eivind A. Sivertsen
plus are you sure you're reading the latest manual? it is chapter 6.8. The location was correct for the onlien manual. I first tried my stored PDf version, since I could not reach http://www.mysql.com There, it was section 24.2. Now I printed then online section 6.8 and will go through it. My

Re: fulltext searching / BUG report

2002-07-02 Thread Sergei Golubchik
Hi! On Jul 02, Thomas Spahni wrote: On Tue, 2 Jul 2002, Erlend Hops? Str?msvik wrote: Download the 4.0.2 source and compile it. Things seem to work a lot better with the 4.0.2. And it won't crash with special combinations of words :) Hi, Some things with BOOLEAN MODE seem still

Re: fulltext searching

2002-07-01 Thread Marko Djukic
hi all... i can't seem to get the fulltext searching working perfectly... single search terms it works fine, multiple search terms it also seems to be ok - finding records with any of the search terms. however, if i try the boolean mode it gives out garbage all the time. i try for example an

Re: fulltext searching

2002-07-01 Thread Sergei Golubchik
Hi! On Jul 01, Marko Djukic wrote: i can't seem to get the fulltext searching working perfectly... single search terms it works fine, multiple search terms it also seems to be ok - finding records with any of the search terms. however, if i try the boolean mode it gives out garbage all the