Apache Cloudscape ?
I guess you are using Cloudscape from Informix now IBM?
What do you want to do with full text index ? Indexing a text column or doing some information retrival stuff?
Well, indexing a text column is possible. You will have to consider the pagesize.
From the documentation:
NOTE: The size of the key columns in an index must be equal to or smaller than half the page size. If the length of the key columns in an index is larger than half the page size of the index, creating an index on those key columns for the table fails. For existing indexes, an insert of new rows for which the key columns are larger than half of the index page size causes the insert to fail.
-- use a larger page size for the index
CREATE INDEX large_index ON PageContent (large_text_column)
PROPERTIES db2j.storage.pageSize=8192
What I can see from the documentation TSearch is more something of a text search extender or module, coming along with multiple functions and data types and tables ...
Sorry I can't help you there, I don't know Cloudscape that well. With the index option I mentioned you will be able to implement such functions yourself. I am not aware of an extension.
There are text search tools available doing that for you:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.