July 19, 2012 at 9:19 pm
Can anyone please help me with Performance tuning in general steps.
Like what values we need to considers when we do performance tuning on stored procedures and queries.
July 19, 2012 at 9:26 pm
I guess there are no default recipes and most of the people will say "it depends". 🙂
Best regards,
Andre Guerreiro Neto
Database Analyst
http://www.softplan.com.br
MCITPx1/MCTSx2/MCSE/MCSA
July 19, 2012 at 10:06 pm
Take a look at the books that are free pdf download from RedGate http://www.red-gate.com/community/books/#sqldev
Jared
CE - Microsoft
July 19, 2012 at 11:56 pm
The below articles might also help you to get started
Finding the Causes of Poor Performance in SQL Server, Part 1
Finding the causes of poor performance in SQL Server, Part 2
How to post data/code on a forum to get the best help - Jeff Moden
http://www.sqlservercentral.com/articles/Best+Practices/61537/
July 20, 2012 at 1:18 am
Get Grant's book
or
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
July 20, 2012 at 4:56 am
Not much to add. I'd start with Gail's articles. Once you're going, my books can help. Also, performance issues can be from causes other than queries (although that's near the top of most issues) so I'd suggest checking out the Troubleshooting SQL Server[/url] book (which Gail also contributed to).
"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
July 20, 2012 at 12:02 pm
Thank you one and all.I'll get back to you if i have any dbts..
July 20, 2012 at 3:21 pm
SELECT SUM(signal_wait_time_ms) AS TotalSignalWaitTime ,
( SUM(CAST(signal_wait_time_ms AS NUMERIC(20, 2)))
/ SUM(CAST(wait_time_ms AS NUMERIC(20, 2))) * 100 )
AS PercentageSignalWaitsOfTotalTime
FROM sys.dm_os_wait_stats
What values do we need to consider for this??
Do we have any default values for this.?
If it is a wrong question let me know.
July 20, 2012 at 4:07 pm
July 20, 2012 at 4:17 pm
@SSCrazy
Hello
I just wanted to know like what all types of counters are to be checked during perfmon.
(OR)
and what values do we need to go though if we use DMV's
July 20, 2012 at 4:22 pm
devullapallymanidhar (7/20/2012)
I just wanted to know like what all types of counters are to be checked during perfmon.(OR)
and what values do we need to go though if we use DMV's
Grant Fritchey (7/20/2012)
I'd suggest checking out the Troubleshooting SQL Server[/url] book (which Gail also contributed to).
It's covered in Chapter 1 and 6, and probably most of the others too.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
July 20, 2012 at 4:31 pm
GilaMonster (7/20/2012)
Grant Fritchey (7/20/2012)
I'd suggest checking out the Troubleshooting SQL Server[/url] book (which Gail also contributed to).It's covered in Chapter 1 and 6, and probably most of the others too.
I think the OP is now fishing for fast fixes that don't exist... To the OP... There is no easy answer to the questions you have. You should read the books we all suggested.
Jared
CE - Microsoft
July 20, 2012 at 4:34 pm
There's one very fast way to resolve performance problems - hire a specialist to do it for you. 🙂
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
July 20, 2012 at 4:37 pm
GilaMonster (7/20/2012)
There's one very fast way to resolve performance problems - hire a specialist to do it for you. 🙂
I hope to be that "specialist" in a couple of years 🙂
Jared
CE - Microsoft
Viewing 14 posts - 1 through 13 (of 13 total)
You must be logged in to reply to this topic. Login to reply