We are using DB2 9.7 on a Windows platform and have a database which stores a number of binary files (mostly word documents) in a blob column. We have been asked by our client if it is possible to do a text search of said stored documents.
I did not think this was possible in DB2 and was planning on using the java POI library to extract the docs and then search on the text I can extract, but I read that the Net Search Extender feature of DB2 might allow us to do this right in DB2.
Does the Net Search Extender allow me to query a blob field directly?
eg. Select * from myTable where blobField like '%searchString%'
When I click on a database in control center, I do see a 'Net Search Extender' option in which I can select 'Enable Database For Text'.
Sorry if this is a dumb question, I'm no DBA (and we have none), just a java developer trying to stumble through the client's requirements.