Viewing 15 posts - 451 through 465 (of 22,184 total)
And for Query Store, you may want to look at the settings for data collection. Prior to 2019, the default was to capture all executions. I'd suggest switching that to...
April 4, 2023 at 2:02 pm
In addition to everything else already explained, you can go to the memory on the system in question and retrieve the execution plan from the Dynamic Management Views. This blog...
April 4, 2023 at 2:00 pm
I do not have a good answer for you. However, I've reached out to see if I can find one.
April 4, 2023 at 1:54 pm
Reads are not a measure of rows. They're a measure of pages. That includes disk and memory. For a tiny table, it's probably on mixed extents, so while, in theory,...
April 4, 2023 at 1:33 pm
By its very nature, some of the interleaved execution that we're getting with all the intelligent query processing is going to cause some queries to slow down as the execution...
April 4, 2023 at 1:08 pm
This is a big stored procedure which has multiple operations SELECTs, INSERTs within it and bunch of tempdb operations? The temp table error was something related to another operation...
April 4, 2023 at 12:51 pm
First I am still learning this forum so do not know how to properly quote messages but to answer Jeff Moden 2nd statement then 1st.
I concur with your Steps...
April 3, 2023 at 12:39 pm
No, to use Extended Events for this, you'd have to have a second process that monitors the events for the action in question and then respond from there. There is...
April 3, 2023 at 12:26 pm
Well, technically, many of those do not match. w.astronecollege.com and ww.astronecollege.com are different more than just whether or not one has http:// or https:// in front. The others, you could...
March 31, 2023 at 1:49 pm
Well, honestly, this is a tough one. However, I'd probably put Extended Events to work to watch for object changes. However, you could also look to Event Notifications, although that's...
March 31, 2023 at 1:45 pm
An index on the columns involved in ordering the data may also be useful. Testing is your buddy.
March 31, 2023 at 1:37 pm
What schedules the monthly change? Whatever that process is, just piggy back on it to then automate the procedure update at the same time.
March 31, 2023 at 1:35 pm
Insert operations can absolutely block one another. If a lock, or a latch, is held on a page by one operation, then other operations will wait for access. Latches are...
March 31, 2023 at 1:34 pm
All the DISTINCT operators... Either, your data structures are very poor, so you can't guarantee unique rows based on standard queries, or, someone thinks this is how all queries must...
March 30, 2023 at 12:32 pm
and speaking of blocking.
whoever did the code does not really understand what "SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;" and "with (nolock)" do.
apart from the fact that it allows you...
March 30, 2023 at 12:20 pm
Viewing 15 posts - 451 through 465 (of 22,184 total)