Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)

  • RE: A problem with using full text search with wildcard query

    jimbobmcgee (12/3/2012)


    I'm not sure why you need the * here.

    * is supposed to be a prefixing term, so "ipad*" should match words that start with "ipad", e.g. "ipady", "ipadness", "ipadable"...

  • RE: Using Full-Text Search

    Eugene Elutin (11/19/2012)


    eranzo111 (11/19/2012)


    A dead end I guess... 🙁

    I was so happy when I saw the significant performence improvement when I used the full text search instead of the...

  • RE: Using Full-Text Search

    A dead end I guess... 🙁

    I was so happy when I saw the significant performence improvement when I used the full text search instead of the LIKE query, and...

  • RE: Using Full-Text Search

    Tava (11/19/2012)


    eranzo111 (11/19/2012)


    Hi Tava,

    With those 2 queries, I get partial results.

    Let say the the text I query by is "eran":

    SELECT *

    FROM table_name

    WHERE FREETEXT(*, 'eran');

    SELECT *

    FROM table_name

    WHERE CONTAINS(field_name, 'eran');

    And the DB...

  • RE: Using Full-Text Search

    Hi Tava,

    With those 2 queries, I get partial results.

    Let say the the text I query by is "eran":

    SELECT *

    FROM table_name

    WHERE FREETEXT(*, 'eran');

    SELECT *

    FROM table_name

    WHERE CONTAINS(field_name, 'eran');

    And the DB has 4...

Viewing 5 posts - 1 through 5 (of 5 total)