I have 2 sql statements
//Fails -- Doesn't return anything even though and i know it has atleast
more than 100 records
select count(*)
FROM table_1
where contains(rqst_tree_blob, 'lab', 6) > 0 ;
//Success
select count(*)
FROM table_2
where contains(rqst_tree_blob, 'lab', 3) > 0 ;
What am i doing wrong here?
TIA
manish
"Manish" <m...@hotmail.com> wrote in message
news:1nnorfll6d11o$.e4syh1wxr6kh$.dlg@40tude.net...
Manish :