Viewing 15 posts - 991 through 1,005 (of 22,184 total)
Up front, I work for Redgate.
We, every monitoring tool, use the exact same set of tools you can use. Dynamic Management Views, Extended Events, Query Store, DMI queries, PerfMon, all...
January 24, 2022 at 2:57 pm
Remember, that's a VM, so you're reading what it thinks it sees from within that VM. You should also run queries against the hypervisor to see how much CPU is...
January 24, 2022 at 2:51 pm
Wait.
A terrabyte restore could take several hours depending on your disk, the amount of recovery needed, contention on resources with running processes...
Wait.
Or, look to the wait statistics to see what...
January 24, 2022 at 2:48 pm
Pretty sure this query will do everything you're asking for and more. January 24, 2022 at 2:46 pm
Yep. Timeout is strictly a client connection setting. You can control the remote query timeout setting, but it's still very much a client-side problem. Otherwise, this sure sounds like...
January 24, 2022 at 2:34 pm
The execution plan doesn't have runtime metrics (what's called an "Actual Plan" in SSMS), so it's a little hard to know precisely what's happening. You say it's returning two rows....
January 20, 2022 at 1:19 pm
As @ratbak says, a SELECT won't affect data in tables. Any given SELECT operation can cause blocking as it uses resources, which can slow down things. However, that's extremely common...
January 19, 2022 at 1:52 pm
Here's the Microsoft documentation
Read uncommitted simply doesn't take out some locks, allowing for reads as data gets changed. This can result in incorrect data, missing or duplicate data. Honestly,...
January 18, 2022 at 3:40 pm
I don't have documentation on this kind of setup, sorry. I've never run more than 2-3 instances on a server.
However, heck yes, you need to have max memory set.
@jo-2 Pattyn...
January 12, 2022 at 3:06 pm
One, please, always, despite this being a technical question, talk to someone in legal at your organization after you decide on a path forward.
Two, I've been studying this for years,...
January 12, 2022 at 3:03 pm
ISNULL will affect performance if the ISNULL is being used in WHERE, ON or HAVING. As part of the SELECT or VALUES listing of columns, ISNULL won't be a big...
January 12, 2022 at 2:47 pm
Thanks for the responses everyone.
Rod, I feel for you man. It's hard to find good places where you can learn & grow. I went through four jobs in less than...
January 10, 2022 at 12:35 pm
I point to three tools for monitoring query performance (not Jobs, Johan's answer is a good one), including batches, statements and procedures. These are, in no particular order, Dynamic Management...
January 7, 2022 at 2:07 pm
So just to clarify. if i have a clustered index on say contactid and invoiceid however none of the updates are on those columns then there wouldn't be a...
January 5, 2022 at 9:30 pm
I like @DesNorton's answer.
However, what about just using the SEQUENCE object? It'll do the increments for you. It doesn't have to be specifically an IDENTITY column that way.
January 5, 2022 at 3:13 pm
Viewing 15 posts - 991 through 1,005 (of 22,184 total)