I am using a profiler to determine the speed of my sql operations but am not sure what duration in milliseconds is considered good and what speed is bad? If its bad I can alter the query or fetchplan. So far I have anything ranging from 1 - 44 ms, with two outliers at 110ms.

I have a ms sql compact 3.5 database, using Telerik Open Access and its Open Access Profiler (which is pretty good btw). My application is a WPF desktop app.

link|improve this question

73% accept rate
4  
Amount and type of data will play into your times. – IAbstract Jul 16 '11 at 0:19
I'm not sure why this question got voted down. – Shatterling Jul 16 '11 at 0:34
3  
Probably because of the first comment--you haven't really provided enough information to provide an informed answer. – Flimzy Jul 16 '11 at 0:37
I thought that others using sql server compact with a desktop app could give me an idea of how their applications were performing. I wouldn't expect more than a couple of thousand rows for reads; updates and deletes are usually small. I have defined indexes but I may have missed a few. – Shatterling Jul 16 '11 at 0:58
You need well defined load scenarios, simulation (load test) result data, and business driven performance goals to answer this question. And I wouldn't personally post that data on Stack Overflow :) – Merlyn Morgan-Graham Jul 16 '11 at 1:10
feedback

closed as not constructive by Flimzy, Merlyn Morgan-Graham, Randy, VMAtm, abatishchev Jul 17 '11 at 4:21

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

You're doing the right thing by being concerned, but you're asking the wrong question. As IAbstract says, the nature of the CRUD operations matters. Are you selecting a single row by ID? Doing an update with a join? Doing a full-text search? Is the query time affecting your application?

If possible, you'd be better off looking at query plans first and making sure that you have good indexes. Make sure you don't have table scans, etc.

link|improve this answer
Thanks anon - you beat me to my own explanation of why I downvoted :-) – Michael Petito Jul 16 '11 at 0:38
1  
I would also add that it's important to consider how much database activity your app is doing and if it's synchronous to user activity. – Michael Petito Jul 16 '11 at 0:40
Ok, so the first step is to make sure that there are no table scans before booting up the profiler. – Shatterling Jul 16 '11 at 1:01
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.