Viewing 15 posts - 1,171 through 1,185 (of 22,184 total)
Total agreement with @pietlinden. There is no "fast" way to understand insanely huge and complex queries. It's all about breaking down the component parts and understanding what each does. That...
September 9, 2021 at 2:51 pm
That's it to my knowledge.
September 9, 2021 at 2:48 pm
Dacpac works as a deployment mechanism (although there are shortcomings). However, it's now how you track a history of changes to objects in the database. There's just no easy mechanism...
September 9, 2021 at 2:47 pm
Let's be really clear here, you can't update a row and read it at the same time, when the UPDATE takes an exclusive lock. NOLOCK, while used as a magic...
September 8, 2021 at 12:25 pm
I'd say you either have to use VIEW SERVER STATE and/or VIEW DATABASE STATE, or you need to create your own custom views/procedures and then give them access through there....
September 8, 2021 at 12:09 pm
Well, you could, with a ton of work, create a generic procedure that just needs a table name to make this work. You'd have to use dynamic SQL to build...
September 8, 2021 at 12:06 pm
Hey Rod,
I know I'm not supposed to try humor any more because it just leads to me getting in trouble, but your co-workers could use a clue-by-four up side the...
September 7, 2021 at 6:53 pm
Thanks for the feedback everyone.
Rod, I think the analysis paralysis thing is a problem for really smart people. Me, I'm more likely to come to the brown leaves conclusion far...
September 7, 2021 at 1:36 pm
<sigh>
So I post a comment over at DBA Stack Exchange, because I know what I'm posting isn't an answer. I get dinged for it because it almost reads like an...
September 2, 2021 at 1:15 pm
You get one row per batch if you collect batch_completed. You get one row per procedure call if you collect rpc_completed. You get one row per statement if you collect...
September 2, 2021 at 12:15 pm
Further to what Brian says, that TOP might even hurt performance. So, yeah, ditch it. It's not adding functionality for you.
The only thing I can spot right now without an...
September 1, 2021 at 1:06 pm
Hello ,
Is the activation of the Automatic tuning function on an Azure SQL manager instance equivalent to the recompile operation
Not even a little bit. A recompile is simply the...
September 1, 2021 at 12:59 pm
I don't think there are a standard set of canned reports that someone can simply hand you. There are too many variables at play. Personally, I've usually used a 3rd...
September 1, 2021 at 12:52 pm
You are collecting every single statement. Of course it's a lot. I'd suggest changing that to batch & rpc completed. You'll still get a ton, but not as much as...
August 30, 2021 at 9:20 pm
Viewing 15 posts - 1,171 through 1,185 (of 22,184 total)