> The Full-Index Catalog is working fine and repopulating as it should. But
> the
[quoted text clipped - 20 lines]
>
> If you have any clues, I would be grateful.
So I took yur suggestion and tried the following statement:
SELECT ticket_id,ticketnote_id ticketnote_byname, Ticketnote_text FROM
DMS_TICKETNOTES
WHERE Contains(TicketNote_Text, ' %0099% ')
But this returned nothing.
Again the string is actually test00998877665544332211

Signature
Thanks,
Art
Database Administrator
Dealer Marketing Services, Inc..
arthurlorenzini@promaxonline.com
309.314.2176
> Art,
>
[quoted text clipped - 38 lines]
> >
> > If you have any clues, I would be grateful.
Russell Fields - 06 Nov 2008 21:59 GMT
Art,
Sorry, but I was apparently not clear. My example did not use CONTAINS. It
was more like this:
SELECT ticket_id,ticketnote_id ticketnote_byname, Ticketnote_text
FROM DMS_TICKETNOTES
WHERE TicketNote_Text LIKE ' %0099% '
In this case the CONTAINS is meaningless since you have no data to match.
But you could be searching complimentary data such as below where fulltext
index and string search combine to get your answer:
SELECT ticket_id,ticketnote_id ticketnote_byname, Ticketnote_text
FROM DMS_TICKETNOTES
WHERE CONTAINS (TicketNote_Text, 'Johns* ')
AND TicketNote_Text LIKE ' %0099% '
So, my point was where a particular wildcard could be applied.
RLF
> So I took yur suggestion and tried the following statement:
>
[quoted text clipped - 53 lines]
>> >
>> > If you have any clues, I would be grateful.