Viewing 15 posts - 31 through 45 (of 98 total)
April 21, 2023 at 7:06 pm
Same here, mine were fine for a few years before this issue started about 6 months ago.
April 14, 2023 at 10:17 pm
I also started to experience this about 6 months ago, I wonder if an SP introduced the issue. I had over 300 tiny databases in my AG. I've reduced it...
April 12, 2023 at 3:10 pm
You might try DBCC Updateusage.
I've had to run that coming off some old servers to fix performance issues if it seems storage is your related wait types.
March 24, 2023 at 7:39 pm
Have you reviewed the queries involved in the deadlocks?
Perhaps you are under -indexed or over-indexed. Maybe the queries can be tuned to hit the tables more efficiently (and same order).
March 1, 2023 at 3:04 pm
I'm with Jeff M, probably a security setup issue, like remote user mapping issue.
If using Win Auth, it could be an SPN issue.
Or possibly not calling it correctly in the...
October 5, 2022 at 6:26 pm
Since nobody has suggested anything...look into the SPN's if it's a domain user.
Double hop scenario for Windows accounts will show up as anonymous (Kerberos not forwarded).
August 5, 2022 at 8:26 pm
You might check the schema change history report (data from default trace).
On the database, right click, choose Reports > Standard Reports > Schema Changes History from context menu.
August 1, 2022 at 4:25 pm
I agree with Johan's approach. Use Data Migration Assistant to check for deprecated code.
Go with a new server with all the latest. You build it with a different name like...
June 8, 2022 at 7:58 pm
Thanks for everyone's input. I presented my findings to the SR DEV, he also feels the Bank subquery is redundant. He also doesn't believe we need DISTINCT and NOLOCK. He...
November 8, 2021 at 4:46 pm
No missing index suggestion. It didn't use the your recommended one.
November 8, 2021 at 2:24 pm
But when Jonathon added both columns the WHERE clause, it might have taken care of it.
c.CustomerNumber = t.CustomerNumber
AND c.Customer = t.Customer
Jonathon, your second query brought the spool back. But I...
November 5, 2021 at 4:11 pm
I don't understand what you are trying to do or your data. But I think the part:
Bank = (Select Bank From Customer Where Customer=t.Customer)is redundant.
I'm...
November 5, 2021 at 4:00 pm
What is the difference in using 'EXISTS' instead of 'IN'?
November 5, 2021 at 2:47 pm
Viewing 15 posts - 31 through 45 (of 98 total)