Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2008 Forums
 Transact-SQL (2008)
 Improve database perfomance

Author  Topic 

kond.mohan
Posting Yak Master

213 Posts

Posted - 2011-10-22 : 03:14:58
Hi

i am working on huge database(more than 300GB) My client want expect betterperformace through all database operations .
1 indexes created on database properly
2 queries done by efficient maner
3 existing database structurd is good
..

how to maiatain database more efficiently & effectively in sql server 2008






mohan

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2011-10-22 : 04:35:19
1. for creating indexes run database tuning wizard and as per recommendation analyse queries and find out which indexes added will result in good performance boost. specifically look for queries run very frequently and taking large amount of time to get executed.
2.analyse query execution plan and see how you can fine tune them by analysing costly steps
3.this would require some amount of effort as it might end up in quite a lot of redesigning. Always think in terms of implemetation like which of recommendation can be implemented and maintained with minmum of effort. To start with,see if tables are normalised if yes to what level etc

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page

GilaMonster
Master Smack Fu Yak Hacker

4507 Posts

Posted - 2011-10-22 : 06:54:28
[url]http://www.simple-talk.com/sql/performance/finding-the-causes-of-poor-performance-in-sql-server,-part-1/[/url]
[url]http://www.simple-talk.com/sql/performance/finding-the-causes-of-poor-performance-in-sql-server,-part-2/[/url]

--
Gail Shaw
SQL Server MVP
Go to Top of Page
   

- Advertisement -