USEFUL SITES :
Write for Us
Application Design (VB/ASP)
Like database design, performance tuning of applications should begin during the application design stage, otherwise you may have to recode your application after it is put into production to fix performance problems. Most of the most serious performance problems I have run across have been related to poor application design and coding. It seems as if many developers just don’t know how to make the best use out of SQL Server. The following tips are geared mostly toward VB and ASP developers.
Indexing
Without proper indexes, SQL Server performance can be terrible. And not just any kind of index will work, it has to be the right index for the right query. Badly selected indexes can actually slow down SQL Server’s performance. The following tips focus on critical knowledge that every DBA should know.