Viewing 15 posts - 931 through 945 (of 22,184 total)
I shy away from the ring buffer as an output mechanism. It puts quite the load on the monitored machine. Instead, I'd suggest using file output. You could then use...
March 1, 2022 at 2:25 pm
I try to help. I really don't look at who it is. I try.
Now, if they get demanding. I walk away. No need to argue or whatever. I helped, or...
March 1, 2022 at 1:19 pm
As you can tell, this is a huge topic. There's a lot to it. Honestly, I'd suggest you grab a copy of my book, link in the signature below this...
February 24, 2022 at 1:51 pm
Oh, same query, but not just a single instance of the query. Yeah, totally different. I understood you meant that only the one process and one query was involved. Instead,...
February 22, 2022 at 5:23 pm
Data.
As data changes, so does behavior. A query that was fine for 10k rows isn't for 10million. Check the execution plans. Look at row estimates there. Compare them to reality....
February 22, 2022 at 4:44 pm
There are always exceptions to everything, but speaking in general terms, you'll be better off letting SQL Server perform an update through the UPDATE process rather than deleting existing data...
February 22, 2022 at 4:00 pm
Be real cautious about fixing deadlocks using table lock hints. It may fix the deadlock, but can cause other performance hits. Testing is your friend.
Likely, it's a parallelism deadlock. You'll...
February 22, 2022 at 3:44 pm
When I see a sudden change in behavior like this, first is checking all the servers & os's, etc., for changes. A new patch on the SAN or on the...
February 22, 2022 at 3:41 pm
Yep. Formatting is best done in the client app. Always.
February 11, 2022 at 1:51 pm
Thanks Grant. I presume there are sys tables for jobs and job activity. Not sure if I then do sp_stop_job or KILL process.
I suspect either will work. Testing is your...
February 10, 2022 at 2:54 pm
Sorry, Steve, I clicked "report" in stead of quote 🙁
Closing a post after 1 year of no responses seems fair to me.
I fixed it.
And yeah, I agree. After a...
February 10, 2022 at 2:41 pm
It really does depend on the error, but you should look at the system_health extended event session. You can get errors there. Also, you can get queries that held...
February 10, 2022 at 2:40 pm
There's no way to do this within the query, so what you have to do instead is set up a monitoring job. Start it at the same time as the...
February 10, 2022 at 2:37 pm
Viewing 15 posts - 931 through 945 (of 22,184 total)