Verity to Solr Addendum
One day into this blog and I’m already lying about upcoming posts! Seriously, I noticed reading over my first post that I had unintentionally left a couple of things out. The first is a postscript to...
View ArticleColdFusion: Queries inside query loops
One of the first places I typically look to improve the performance of ColdFusion templates is the query loop. Sometimes developers, in their haste to get things done, don’t take the time to think...
View ArticleOracle: Friendly URLs
On the one hand, we want to avoid hitting the database if we don’t have to. On the other hand, if we can use built-in functions in our queries, this can be preferable to manipulating the data after...
View ArticleMoving from Oracle Text to Solr
I’ve not had the opportunity to use Oracle’s full text search, but I thought I would offer this link for consideration: Moving from Oracle Text to Solr/Lucene I did have the opportunity some years ago...
View ArticleOracle 10g Pagination
A colleague of mine alerted me to the following example of pagination in Oracle 10g: select * from ( select /*+ FIRST_ROWS(n) */ a.* , ROWNUM rnum , count(*) over() as total_rows from ( /* your select...
View ArticleOracle: Getting milliseconds past midnight
Do a search for oracle milliseconds past midnight and chances are you’ll see results for how to retrieve seconds past midnight: SELECT TO_NUMBER( TO_CHAR( CURRENT_DATE, 'SSSSS' ) ) FROM dual; Finding...
View ArticleSome statistics
At some point yesterday this blog passed 200 unique visitors and 400 page views. And today we had our 300th visit. I guess that’s what one would call starting small. On a side note, I’ve recently...
View ArticleSHA-256 Hash in Oracle 10g
It’s been a while since I’ve posted, and I’m not certain when I will get back to posting regularly (sorry!), but I came across an issue yesterday and found a blog post that was too good not to bring to...
View ArticleMore Statistics
Odd that my lack of blogging does not seem to have affected traffic on this site! I posted in April of last year that the site had reached 1,000 page views from 400 unique visitors; that was over...
View ArticleOracle: SEO-Friendly URLs II
I posted over a year ago about how one might use regular expressions in Oracle to return SEO-friendly URLs in queries. The query I came up with at the time looked something like this: SELECT id, title,...
View Article