Viewing 15 posts - 1,876 through 1,890 (of 59,082 total)
This seems like the very first event for a brand new group. Is it a new Meetup Group?
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 9:48 pm
Thanks you very much Jonathan, Grant Sir and Jeff. Thank you.
You're welcome but I've done nothing on this thread except to like what a couple of others have stated...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 9:44 pm
You need to change the selection from seconds to minutes before you can type a "1" in there.
Also, if you already have sp_WhoIsActive running, why are you making another job...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 9:38 pm
Nicely done, Jonathan!
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 7:18 pm
Other thing is, SQL optimizer has not suggested any missing indexes in the actual execution plan.
We are on SQL Server 2017 EE.
The optimizers suggesting for missing indexes are,...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 6:59 pm
The columns were permitted to be null for good business reasons. I know that there are two (or possibly more) schools of thought about using null as a meaningful...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 6:56 pm
Based on the Compatibility Levels you've posted, there's a really good chance that this is because of a fairly major change they made to the "Cardinality Estimator" (CE for short)...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 6:29 pm
Ah... totally got it. Thank you for the feedback.
Understood on the 3 second SLA but that doesn't seem to be the predominant issue. The 1 or 2 day sleeping spids...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 5:41 pm
Thank you, I think the other factor is that there are more than 100 tables that have dependency on this table, so the delete might be looking into all...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 5:19 pm
I can't help on AOAG because I've never had to use it. Once someone helps you figure that out, I can give you a very strong hint on how to...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 4:30 pm
We are seeing some stale connections open for long duration and causing blocking chains. My question is how can track/calculate the idle time for each user session.
Almost without exception,...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 4:09 pm
Jeff, when done right, natively compiled stored procedure achieve incredible performance gains. They are compiled software (DLLs), much like C++ code. The problem is that there are many limitations...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 3:39 pm
You can get it from system views:
Example:
select
so.name, st.name, sc.text
from sys.triggers st inner join sysobjects so on st.parent_id = SO.id inner join syscomments sc on st.object_id = sc.id where so.name...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 3:35 pm
The setting is 1000 and 100 respectively.
You REALLY need to change that ASAP.
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 3:32 pm
Not sure how I can help. The earlier level of code is obviously not producing code that will discriminate against facilities. There's nothing in the code you posted that will...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2023 at 4:37 am
Viewing 15 posts - 1,876 through 1,890 (of 59,082 total)