How do you handle frequently used SQL queries?
How do you store, re-use, or otherwise handle frequently used SQL queries?
I think a git repo makes a lot of sense, but it might be hard to get less-technical team members on board.
you mean the result set or the query it-self? databases like oracle, mysql, postgres can already identify existing queries and hash it to re-use execution plan etc... some can even convert literals in queries into bind.. generally seeking use bind variables in your queries for re-use...