Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


how do u do Performance tunning ?



how do u do Performance tunning ? ..

Answer / bhaskar

• Table should have primary key
• Table should have minimum of one clustered index
• Table should have appropriate amount of non-
clustered index
• Non-clustered index should be created on columns of
table based on query which is running
• Following priority order should be followed when
any index is created a) WHERE clause, b) JOIN clause, c)
ORDER BY clause, d) SELECT clause
• Do not to use Views or replace views with original
source table
• Triggers should not be used if possible,
incorporate the logic of trigger in stored procedure
• Remove any adhoc queries and use Stored Procedure
instead
• Check if there is atleast 30% HHD is empty - it
improves the performance a bit
• If possible move the logic of UDF to SP as well


• Remove * from SELECT and use columns which are only
necessary in code
• Remove any unnecessary joins from table
• If there is cursor used in query, see if there is
any other way to avoid the usage of this (either by SELECT
… INTO or INSERT … INTO, etc)
There are few hardware upgrades can be considered as well
like separating index on different disk drive or moving
tempdb to another drive. However, I am not suggesting them
here as they are not quick way to improve the performance
of query.

Is This Answer Correct ?    6 Yes 1 No

Post New Answer

More SQL Server Interview Questions

How to list all tables having unique constraints in any of the columns in a database.

1 Answers  


How can you know if the row fetched from cursor is still valid in underlying table?

0 Answers  


What are the restrictions that views have to follow? : SQL Server Architecture

0 Answers  


How to execute multiple stored procedures at one time in sql server?

0 Answers  


What are the benefits of normalization?

0 Answers  


How to skip remaining statements in a loop block using continue statements?

0 Answers  


How is sql used in sql server?

0 Answers  


Do you know how to send email from database?

0 Answers  


Where do we generally create INDEX?

1 Answers   Ernst Young, Thomson Reuters,


Write a sql query to delete duplicate records from a table called table1

0 Answers  


How many triggers you can have on a table?

0 Answers  


What is database dimension? : sql server analysis services, ssas

0 Answers  


Categories