Microsoft
Software
Hardware
Network
Question : Oracle Case Insensitive Query
I'm stuck with data in an Oracle database that has the beginning letter upper case (i.e., Bob, Sally). I can't change the format. How can I do a fuzzy, case-insensitive query on that data?
where name like UPPER('%bo%') <- doesn't work
where name like '%Bo%' <- works
where name like '%bo%' <- doesn't work
Any ideas? Db is Oracle 10.x
Answer : Oracle Case Insensitive Query
where upper(name) like UPPER('%bo%')
Random Solutions
Using Rich Text Box
SQL criteria applied to nested queries
Data Validation with VBA without use of worksheet cells
How to zip/unzip with VB.NET?
Antivirus solution for Windows Server 2008 R2 Core.
Prompt user to verify data message when user hits add record button in access
Terminal Server port configuration
Caluculate if met SLA for completetion of task
Update Pivot Table Based On Cell Reference - Error Handling
UNION all view % is not updatable because a partitioning column was not found