对于ntext的字段,作为查询条件的时候速度会很慢,比如以下语句:
select * from T_KNOWLEDGE where CONTENTS like '%Oracle TimesTen In-Memory Database%'
花了将近5秒钟,
有一种解决办法就是再加一个小条件,而且必须要放在like的前面
select * from T_KNOWLEDGE where title='大数据新宠:内存数据库之Timesten评测' and CONTENTS like '%Oracle TimesTen In-Memory Database%'
花了将近1秒钟都不到,就查询出来了