Using Regular Expressions in Check Constraint – no more articles on Obama, McCain, Palin or Biden

Lucas Jellema
0 0
Read Time:1 Minute, 31 Second

Recently I was working on an RSS feed aggregator – a SQL Merge statement that through the use of httpuritype and XMLTable scans multiple RSS feeds and merges the news items from those feeds into a central RSS_ARCHIVE table. I soon discoveredthat the archive would become flooded with stories on the candidates for the US elections. So I decided I would ban those articles from the RSS_ARCHIVE table: I would not allow any article that had the name of one of the four contenders (President and Vice President) in its title. And the easiest way to enforce such a record level constraint obviously is a Check Constraint.

My first attempt at this check constraint was something old fashioned like:

alter table rss_archive
add constraint rss_ban_stories_chk check 
( instr(lower(title), 'obama')<> -1 and instr(lower(title), 'mcain')<> -1 
  and instr(lower(title), 'palin')<> -1 and instr(lower(title), 'biden')<> -1
)

However, I soon discovered that it would become fairly horrible. So I sat down and browsed a little on the internet about regular expressions. One of those beasts you encounter over and over again and at least for me have still not become an intuitive item in my toolbox. And after some time I found the syntax I needed. That allowed me to create the Check Constraint in a much more elegant way – especially for someone more fluent in regular expressions:

alter table rss_archive
add constraint rss_ban_stories_chk check 
( NOT REGEXP_LIKE(title,'(obama)|(mccain)|(palin)|(biden)' ,'i'))
/

This basically says: the result of trying to find one of the strings obama, mcacin, palin and biden in the title – evaluated in a case insensitive manner (that’s the last parameter to the REGEXP_LIKE operator) should not be true.

About Post Author

Lucas Jellema

Lucas Jellema, active in IT (and with Oracle) since 1994. Oracle ACE Director and Oracle Developer Champion. Solution architect and developer on diverse areas including SQL, JavaScript, Kubernetes & Docker, Machine Learning, Java, SOA and microservices, events in various shapes and forms and many other things. Author of the Oracle Press book Oracle SOA Suite 12c Handbook. Frequent presenter on user groups and community events and conferences such as JavaOne, Oracle Code, CodeOne, NLJUG JFall and Oracle OpenWorld.
Happy
Happy
0 %
Sad
Sad
0 %
Excited
Excited
0 %
Sleepy
Sleepy
0 %
Angry
Angry
0 %
Surprise
Surprise
0 %
Next Post

Grid 2.0 - The Next Step for Real Application Clusters

Let me be clear, I am not a RAC guy, but while using the schedule builder this year, one presentation had a definite hint to the upcoming 11gR2 release. Bob Thorne, Director of Product Management (Oracle) gave an insight on Monday, into the new Grid 2.0, via his presentation called […]
%d bloggers like this: