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...


What is one of the first things you would do to increase
performance of a query? For example, a boss tells you that
?a query that ran yesterday took 30 seconds, but today it
takes 6 minutes?

Answers were Sorted based on User's Feedback



What is one of the first things you would do to increase performance of a query? For example, a bos..

Answer / bhaskar

Can u check the folliwing points are used in the procedure
or a Query.

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 ?    16 Yes 2 No

What is one of the first things you would do to increase performance of a query? For example, a bos..

Answer / george

I think the first thing we need to check for the index
defragmentation, truncating transaction log and shrinking
the tempdb as well, this is because first time the query
get executed in the short time only 30 Sec, however second
day time execution increased

Is This Answer Correct ?    8 Yes 0 No

Post New Answer

More SQL Server Interview Questions

What are the rules to use the rowguidcol property to define a globally unique identifier column?

0 Answers  


Write a program to fetch first 10 records from a file?

0 Answers   Amdocs,


What guidelines should be followed to help minimize deadlocks?

0 Answers  


What is the command used to check locks in microsoft sql server?

0 Answers  


What is a scheduled job or what is a scheduled task?

0 Answers  


What is the difference between SQL notification and SQL invalidation?

0 Answers   MindCracker,


What are the differences between having and where clause.

0 Answers  


What is the importance of a recovery model?

0 Answers  


What are the ways available in sql server to execute sql statements?

0 Answers  


Which system table contains information on constraints on all the tables created?

2 Answers  


Determine when an index is appropriate?

0 Answers  


How do you Implement SSIS Packages in your Project?

0 Answers  


Categories