1
vote
What are some references, lessons and or best practices for SQL optimization training.
You need to learn to read the query plan. You need to know how to pseudo-code the inner workings of an inner loop, merge join, and a hash join, amongst others.
Query planning is a black a …
1
vote
How do you continue to improve your SQL skills?
Most "current" stuff is not SQL itself, but how the database stores the information, and how to retrieve it more quickly. Check out this other thread: …
-1
votes
Sql query to determine status?
select count(*) from process_monitor
where timestamp > yesterday and timestamp < tomorrow.
Alternately, you could use a self join with a max to show the newest mess …
0
votes
Trip time calculation in relational databases?
Ok, this is a bit beyond geeky, but I built a web application to track my wife's contractions just before we had a baby so that I could see from work when it was getting close to time to go to the …
3
votes
Indexed Views in OLTPs?
Materialized views can be useful for reporting against OLTP, especially is large numbers of rows are aggregated to get the results. The space requirements are completely dependent on how much dat …
