Happens to me to be working more and more on Oracle SQL, and, having no tech background about it, I take notice about every trick I put my hands on.
Expanding a previous topic, I would like now to look in an Oracle database structure.
For now, I only need to look for columns name and all it take is
SELECT * FROM all_tabs_columns WHERE column_name LIKE '%keyword%' ORDER BY 2
Hell that was easy.
One of the Rails main mantras is to DRY (Dont Repeat Yourself).