Viewing 15 posts - 886 through 900 (of 22,184 total)
I'd suggest getting performance metrics on individual statements within the query. AND, as has been said several times, the execution plans for the queries. Those two bits of data are...
March 30, 2022 at 1:36 pm
Try batching based on 102,400 rows. The reason I say that is because less than 100,000 rows in a batch and columnstore indexes use the delta store until you get...
March 30, 2022 at 1:33 pm
Hi Jonathan, Thanks for the input. I would like to know if there is any implications/perf issues of using MERGE statement especially when dealing large sets of data?...
March 30, 2022 at 11:58 am
Hi Grant Sir,
Thanks for the pointers and sharing the link of capturing Waits. will check with them replace old join syntax's with ANSI joins.
Couple of questions:
March 30, 2022 at 11:56 am
Literally no way to really answer this question for you. Scale depends on so many different factors.
Let's look at it like this. The various different data management systems that are...
March 29, 2022 at 2:17 pm
More data. "Something is slow and here are a bunch of wait stats" doesn't tell us anything. I'd suggest enabling Query Store on the database in question. It's relatively lightweight...
March 29, 2022 at 2:10 pm
First, not trace. Use Extended Events. It puts far, far less of a load on the system. Plus, you're on SQL Server 2017. Every single piece of new functionality is...
March 29, 2022 at 2:04 pm
RBarryYoung wrote:
Geez, 1 MILLION?!?! Will this guy never stop talking?!?
Few weeks worth of Extended Events 🙂 😎
Weeks? You're doing it wrong. You should be able to...
March 24, 2022 at 4:36 pm
You can absolutely create logins (and there are several choices on how to do this) that only have enough privileges to do certain things and not others. And then, yeah,...
March 24, 2022 at 1:11 pm
Can a column contain more than one data type? The short answer is no, unless the column is of data type variant. I do not recommend using this. I...
March 24, 2022 at 12:49 pm
Microsoft has some fantastic documentation on exactly how to get your backups done in Azure VMs. Pretty much everything you need. Don't forget though, untested backups are unknown. The...
March 22, 2022 at 1:16 pm
Can an aggregate column serve as a primary key?
You mean a computed column? Probably not the greatest of choices, but yes. As long as it's unique and the...
March 21, 2022 at 8:54 pm
I had to check, and yep, mainstream support ended in 2019. Extended support ends in less than two years. Don't "upgrade" to 2014. Move on to one of the three...
March 21, 2022 at 1:05 pm
Strong, strong suggestion, if you're upgrading from 2000, 2008, 2012, skip 2014. Go to 2016 or greater. The reason is simple. 2014 introduced a new cardinality estimation (CE) engine, but...
March 21, 2022 at 12:58 pm
Except for columnstore indexes, every test I've ever seen says reorganize is a waste of time. You may still hit timeouts doing a rebuild, but yeah, I'd stop doing the...
March 18, 2022 at 12:15 pm
Viewing 15 posts - 886 through 900 (of 22,184 total)