|
|
|
|
|
by zikzak
1206 days ago
|
|
I end up helping developers when they get stuck all the time and it is really amazing to me how many people get to the "senior developer" point in their career with very little understanding of how to use SQL tracing (e.g. MS SQL server) and IDE debugging. Even the concept of the "print line" debugging into a lot file seems kind of foreign to them sometimes. They instead rely on running the code, changing something, running it again, etc. I am a big fan of reading through the code. That is almost always enough for me to find the issue and point it out to them assuming I understand the input and output context well enough. But if that doesn't work, add a debug point and fire it up. Not using a debugger seems like a massive waste of time in a situation like this. So much so that I have started asking "did you debug this" or "have you watched this happen in a debugger" before I will help out much. If they say "no" because they don't know how, I will teach them to do so. |
|
Never met this term before - IIUC, SQL tracing is MS-specific? If I may ask, in what kind of situations would you use it?