Viewing 15 posts - 1,276 through 1,290 (of 22,184 total)
I have to admit that I miss in-person events because, as good as they can be, discussions even on things like teams still don't have the "feel" and "serendipity"...
June 15, 2021 at 1:57 pm
While just moving from Standard to Enterprise can result in differences in execution plans, you may also be seeing other things. Check the server settings. Stuff like: default ANSI connection...
June 15, 2021 at 11:47 am
Depending on the amount of data in the master data, I've done this all with scripts in source control. That assumes the master data is all just lookup information, 5...
June 15, 2021 at 11:40 am
I suppose if you have really good monitoring in place, you could use this approach everywhere. However, what I've found over the years is that some databases need a limit...
June 15, 2021 at 11:34 am
Thanks Rod. Yeah, you've hit the nail on the head. While I found the hybrid model put together by the conference to work pretty well. It still didn't get the...
June 14, 2021 at 5:25 pm
Source control here will be your buddy. First, like Phil says, make darned sure every query is using the schema as a part of the query (honestly, this should be...
May 20, 2021 at 12:54 pm
If you use the event auto_stats in Extended Events, you get the specific reason for the statistics update. This will let you differentiate between whatever is occurring automatically and...
May 20, 2021 at 12:50 pm
Multi-Statement, Table Valued, User Defined Functions have a very useful acronym that is worth remembering:
EVIL
Yes, I know it doesn't match MSTVUDF. Doesn't mean I'm wrong.
May 19, 2021 at 11:42 am
A couple of points on this.
First, in the suggested solutions, you left off the schema from the tables. Always include the schema in tables referenced in the FROM criteria. It...
May 19, 2021 at 11:39 am
Good gosh, that's not a short list. You have DISTINCT and TOP in the SELECT list. ON in the JOIN criteria, plus APPLY, PIVOT and UNPIVOT. WHERE of course including...
May 19, 2021 at 11:27 am
Age is just a number ...
You'll need to explain that in detail to my knees. Ha!
However, yeah, total agreement.
May 17, 2021 at 11:55 am
To understand what's happening, I'd suggest capturing some metrics.
First, query performance metrics. You're posting in the SQL Server 2012 forum. Assuming that's what you're running, the best tool for the...
May 13, 2021 at 11:20 am
Here is a little challenge.
Look back at 10, 15 years of new feature in or around SQL Server you've learned or heard about.
What share of those features did...
May 12, 2021 at 11:14 am
Yeah, and there are also a ton of checks built into DBATools. So that might be worth looking at. There are also 3rd party solutions. For example, my company,...
May 11, 2021 at 11:47 am
A quick note on why creating a clustered index first and then loading the data is usually the best approach (testing is always your best friend). The clustered index defines...
May 11, 2021 at 11:43 am
Viewing 15 posts - 1,276 through 1,290 (of 22,184 total)