Viewing 15 posts - 1,771 through 1,785 (of 22,219 total)
Oh I hear you. The reason I could so easily spew out that rant is because of the number of times I've had to explain it. It got to the...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 17, 2020 at 11:28 am
No. That should be all you need. I should point out, statement level captures can be quite large. So, you should make sure you filter the session to eliminate as...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 17, 2020 at 11:15 am
That's the absolute fun thing about triggers. They're not part of the rpc_completed call from an app. They're also not part of the sql_batch_completed call from an app. They're run...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 16, 2020 at 4:50 pm
Ah, triggers aren't technically batches or procedures. You'll have to go to statement level monitoring to capture that.
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
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,...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
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,...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
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...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
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...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
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...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
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...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 16, 2020 at 11:48 am
On the top of every Confluence document I ever write there is a small 2x2 table
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
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....
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
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...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
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...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
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...
"The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
- Theodore Roosevelt
Author of:
SQL Server Execution Plans
SQL Server Query Performance Tuning
June 12, 2020 at 11:45 am
Viewing 15 posts - 1,771 through 1,785 (of 22,219 total)