I made a survey webapp using Asp.Net. The answers given by a user are stored in a table called "survey_results". About 10 stored procedures are called each time a page of the survey is viewed. The stored procedures are simply a query (e.g.: select * from survey_results where questionid = '1' and subquestionid='2') returning a couple of rows (1 to 5).
The webapp has been running for 2 months now and currently the table holds about 150000 rows. The last few days the webapp has been very very slow when going from one page to another webpage. I feel that it has something to do with the database(server). Any ideas?
The webapp has been running for 2 months now and currently the table holds about 150000 rows. The last few days the webapp has been very very slow when going from one page to another webpage. I feel that it has something to do with the database(server). Any ideas?