Viewing 15 posts - 1,186 through 1,200 (of 22,202 total)
Hmmm... No. You'd have to mark the system in some manner. You can avoid tables by using Extended Properties. That's an easy one.
September 9, 2021 at 4:05 pm
Strong recommendation, don't take anyone's advice on licensing. Go to Microsoft. They know. Everyone else just has opinions.
For what it's worth, I agree with @Ant-Green assessment, but I'd still go...
September 9, 2021 at 3:56 pm
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
Viewing 15 posts - 1,186 through 1,200 (of 22,202 total)