Viewing 15 posts - 1,756 through 1,770 (of 22,202 total)
Ah, triggers aren't technically batches or procedures. You'll have to go to statement level monitoring to capture that.
June 16, 2020 at 3:33 pm
Anthony has nailed it. Those indexes are basically duplicates. Potentially, in the event of scans, you may, sometimes, see that smaller indexed used because scanning fewer pages is better. However,...
June 16, 2020 at 3:13 pm
To my knowledge, no.
However, it's all about what events you're capturing and how they're making their calls. If you capture sql_batch_completed and they're using all stored procedures and/or prepared statements,...
June 16, 2020 at 1:20 pm
Based on the info, I can't give you a precise answer. However, the place to look is permissions on the linked server. There must be a difference there when you...
June 16, 2020 at 1:11 pm
First, an answer to your question, then, some discussion on the nature of backups.
To just see the objects in a database:
SELECT COUNT(*) FROM sys.objects AS o
WHERE o.type...
June 16, 2020 at 1:07 pm
This is a very general question, so I'm going to give a very general answer.
If you intend to filter your information based on a particular column, one presumes Rosterdate from...
June 16, 2020 at 12:58 pm
From the Article...
Yet, all the responses were either blatantly wrong, or answering different questions.
Heh... this happens during meetings, as well. Someone goes off on a tangent or with some...
June 16, 2020 at 11:48 am
On the top of every Confluence document I ever write there is a small 2x2 table
June 16, 2020 at 11:46 am
and what are advantages of using trace flags for saving deadlock data to transaction log compared to seeing them in the default XE sessions?
I'd say there aren't any advantages....
June 16, 2020 at 11:40 am
Well, see, now I'm nervous. Making it read only could work. Should work. However, what level of access do people have? They could undo that depending (seen too many places...
June 12, 2020 at 3:50 pm
Getting tossed into the deep end. I feel for you. I'll try to help.
Strong recommendation, take some time and spend it reading. The Stairways series on T-SQL would be...
June 12, 2020 at 11:59 am
Sounds like a valid plan.
Here's an addition.
Going from 2008R2 to 2019, you're hopping the 2014 Cardinality Estimation Engine upgrade. The vast majority of your queries will run the same. A...
June 12, 2020 at 11:45 am
If you can afford to have it up with the server online, yeah, I'd leave it there. I mean, change the security so people can't accidently log into that instead...
June 12, 2020 at 11:40 am
xml is the best data type, so that you can easily shred the deadlock graphs to make them understandable. By the way, I recommend you capture deadlocks more...
June 12, 2020 at 10:03 am
Heh... sounds almost as bad as the default trace. We blow through that in about 10 minutes.
Ha! Yeah, it is.
However, you can edit the system_health session if you want...
June 12, 2020 at 10:02 am
Viewing 15 posts - 1,756 through 1,770 (of 22,202 total)