Viewing 15 posts - 8,866 through 8,880 (of 22,219 total)
If I don't have the before and after I don't know if I tuned it, let alone telling my boss that I just shaved X amount of time or resources...
"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
February 20, 2014 at 3:48 pm
jshahan (2/20/2014)
"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
February 20, 2014 at 3:37 pm
rchantler (2/18/2014)
Is something executed in this case, i.e. is there an actual execution...
"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
February 20, 2014 at 11:04 am
Happy to help.
"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
February 20, 2014 at 7:26 am
Test it:
CREATE TABLE dbo.LetsRecompile
(
ID INT IDENTITY(1, 1),
MyVal VARCHAR(50)
);
GO
CREATE INDEX WhatHappens ON dbo.LetsRecompile...
"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
February 20, 2014 at 6:03 am
Sure. Go read this book by Denny Cherry.
"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
February 20, 2014 at 5:42 am
wolfkillj (2/19/2014)
Fixed that for you.SQLRNNR (2/19/2014)
Yay - I'mfinallyinsane!!! :hehe::w00t:
I was wondering who was going to break it to him.
Congrats Jason.
"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
February 19, 2014 at 11:53 am
You can always look at the backup files themselves to understand the structure of the database that was backed up. I have an article on that on Simple-Talk[/url].
"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
February 19, 2014 at 10:33 am
SQLRNNR (2/19/2014)
Grant Fritchey (2/19/2014)
rodjkidd (2/19/2014)
SQLRNNR (2/19/2014)
rodjkidd (2/19/2014)
Koen just say you are a Holistic SQL Server Consultant - you'll be fine then 😀
Rodders...
Just wondering if a holistic consultant does spinal adjustments??:cool:
Jason,...
"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
February 19, 2014 at 8:02 am
rodjkidd (2/19/2014)
SQLRNNR (2/19/2014)
rodjkidd (2/19/2014)
Koen just say you are a Holistic SQL Server Consultant - you'll be fine then 😀
Rodders...
Just wondering if a holistic consultant does spinal adjustments??:cool:
Jason, not sure about...
"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
February 19, 2014 at 7:55 am
I've never used this, so I don't have a good answer for you. The suggested Microsoft answer is to switch to using SSRS to generate HTML. They don't have 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
February 19, 2014 at 6:40 am
Server-side trace, not Profiler, please. The Profiler gui can have serious negative impacts on performance and really shouldn't be used against production systems.
Further, since you're on 2008, you could look...
"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
February 19, 2014 at 6:24 am
And just using snapshot isolation, as opposed to read committed snapshot, requires changes to the code which people are usually not prepared to make. I'd just recommend using read_committed_snapshot 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
February 19, 2014 at 6:22 am
I'd be interested in seeing the execution plan to better understand how things are resolving, but, this alone will lead to scans of the temporary table:
ON CAST(Machine.MachineKey AS VARCHAR(50)) COLLATE...
"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
February 19, 2014 at 6:17 am
Gazareth (2/19/2014)
Grant Fritchey (2/18/2014)
"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
February 19, 2014 at 4:10 am
Viewing 15 posts - 8,866 through 8,880 (of 22,219 total)