Microsoft
Software
Hardware
Network
Question : how to search a clob field in Oracle database
I ran the following query however it is not returning any results:
select admin_content_id
from csp_tbl_article
where dbms_lob.instr(lower(conte
nt_body),'
%Times New Roman%',1,1) > 0
I know a result should be returned because the following record contains the value of Times New Roman in its CONTENT_BODY field:
<font face="Times New Roman" size="3"><p>article_trigge
r_1. 
I am adding body text now.</p>
I do not understand why no records are being returned. I also tried the following query:
select admin_content_id
from csp_tbl_article
where lower(content_body) like '%Times New Roman%'
Answer : how to search a clob field in Oracle database
lower(content_body) and '%Times New Roman%' are not compatible.
if the content is all lower case, you can't find "T" or "N" or "R"
try '%times new roman%' for the LIKE or 'times new roman' for the INSTR
Random Solutions
Group boxes on form -vb.net 2008 forms app
How do I get the selected value from WPF combobox
performance - NC Vc C index
Windows 2008 Domain Controller Unavailable (but working)
I can not print to tray two which has legal size paper in it. The printer is a HP 3005 pcl printer and there are other users that can print to this tray when printing legal documents.
Need vbs script to apply correct registry settings
DReamwever how to link pages.
ISAPI Filter & MOSS2007
Problem with First Data Global Gateway Connection
N00b trying to understand part of this CF page...