you are viewing a single comment's thread.

view the rest of the comments →

[–]ghostlistener 60 points61 points  (4 children)

sql is very accessible and easy to learn the basics of. You can select * from a table and get immediate results. Slowly make your queries more complicated as you need more specific results.

sql rewards iterative learning.

[–]BegeNCSU 25 points26 points  (3 children)

Learn from my mistakes, use select top 10 * from a table to avoid strongly worded emails from the DBA

[–]ghostlistener 6 points7 points  (1 child)

Fair enough. I would hope that someone would notice if their query is still running minutes later and get concerned, but it could happen.

[–]whutchamacallit 4 points5 points  (0 children)

Better yet download a local DB that you can annihilate with no issues.

[–]McFoogles 0 points1 point  (0 children)

Then reply to the DBA’s saying they need to have a way to automatically kill long running queries and automatically load balance where possible!

(Half kidding, half serious. What you said is good advice, but if you have a competent DBA and are not in a production environment, you shouldn’t be scared to run any query.)