Viewing 15 posts - 1,006 through 1,020 (of 22,202 total)
If Member_MRN_lkupAllMBRNOs is a multi-statement table-valued user-defined function, that alone is going to cause pretty massive performance heads. Either switch it to being an in-line function, or eliminate the use...
January 26, 2022 at 2:17 pm
I agree with Johan, you want to take a look at Data Masker. It's probably the single most sophisticated tool for getting this done, and it will absolutely keep relations...
January 26, 2022 at 2:15 pm
That is an odd one. Are you under memory stress? Have you tried writing out to file? I generally don't recommend using the buffers because it does add considerable overhead...
January 24, 2022 at 2:59 pm
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
Viewing 15 posts - 1,006 through 1,020 (of 22,202 total)