I want to reduce my CPU Usage when I am querying the
Database for records. Now my Winform App(in VB.Net)
suddenly Jumps to 100% CPU Usage when i query for records
from sql server database. I want this Usage to be less. Any
help is appreciated
Answers were Sorted based on User's Feedback
Answer / suresh
check if any indexes is created for that table if not
create it. Open connection and close immediately when no
longer in use.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ram
you need to check the following things:
1. Database size is very high and you are using query which
is not optimized.
2. you must be using too many joins in the query. Check the
execution plan
3. Confirm whether the CPU utilization is more from database
end or application end
http://www.interview-questions.maxmice.com
Is This Answer Correct ? | 2 Yes | 0 No |
Explain the components of common language runtime.
What is the use of errorprovider control?
What are the difference between structure and class?
What is the difference between readonly variable and constant variable?
What is the difference between Dataset and Recordset?
Explain about jagged arrarys ?
What do you mean by Redim in VB.NET?
What is early binding?
What is portable executable?
What is strong name in .net assembly?
Name the class which allows an element to be accessed using unique key?
What is the feature which is common to all .net languages?