Click here to Skip to main content
15,895,740 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
Hi Dears

could any one please tell me how to increase the speed of my ASP .net web site application.
I have made an ASP .Net web site with Microsoft SQL server as back end.There are millions of records in my Database tables. So it makes the conditional insertion , Search and deletion very slow. I have applied indexing in all tables.I am using stored procedures...there are some complex calculations in my stored procedures.The calculation is for inserting and fetching the data to and from the tables.Still I am getting very slow execution.Here data is inserting from an excel sheet to the tables.
Please tell me how to make my application very fast....

Thank you all....
Posted

Are you using efficient servers? Are you using separate servers/cores for Application & Database? What is the RPM of hard disk? What is the maximum data transfer speed for storage drive? Are using GBPS network? What is the RAM size and clock speed?

Many times it happens that we just deploy the software without calculating required resources. The speed is a combination of effective software and hardware components.
 
Share this answer
 
 
Share this answer
 
A quick solution could be to do table partitioning and archiving to reduce the no of rows in the table. Check this link.

Understanding Partitioning[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900