Viewing 15 posts - 556 through 570 (of 598 total)
Sorry, didn't register that you're using adhoc sql generated in the app. If that is the case perhaps consider using sp_create_plan_guide which should work quite well with your unknown WHERE...
February 5, 2009 at 6:46 pm
And yes, you do need to determine where the slow down is occuring because it's not from compile time on such simple execution plans.
Grant did u see the app?...
February 5, 2009 at 5:52 pm
Edit: Sorry, didn't register that you're using adhoc sql generated in the app. If that is the case perhaps consider using sp_create_plan_guide which should work quite well with your unknown...
February 5, 2009 at 5:46 pm
DBCC DROPCLEANBUFFERS should only get run as a test. That removes all the data from memory. Based on the queries you've shown, compiles aren't your issue. You're looking at memory...
February 5, 2009 at 5:20 pm
The only time an adhoc plan will be reused is if the sql matches exactly to the one that create the plan. Exactly meaning down to the white space and...
February 5, 2009 at 3:54 pm
Thanks SQLGuru
So there's no way to enforce the READ UNCOMMITED at a system level?
I don't have any control over what the devs write in their ad-hoc queries. So, it...
February 4, 2009 at 12:21 pm
Can you tell me how much investigation/study did you do about snapshot isolation prior to asking that question? At 1k/sec DML activity it is my guess that...
February 4, 2009 at 8:42 am
Will do ...thanks..
While I'm here would there be any benefit to me using
snapshot isolation?
February 3, 2009 at 1:23 pm
While doing my testing (inserts are active) i was getting deadlocks and kicked out.
So I added the NOLOCK, that stopped the deadlock errors..so then..
I removed all indexes, and created a...
February 3, 2009 at 11:19 am
Thanks Matt,
I was kinda thinkin I may create a simple VB front end, and write a proc or two.
February 2, 2009 at 12:32 pm
Oh I see what you are saying..thanks Gsquared
February 2, 2009 at 10:02 am
You'd have to know before-hand what kind of stuff they query.
- GSquared
I think I can get a pretty good list of the kinda stuff they query the most, but...
February 2, 2009 at 9:32 am
It does have a timestamp, I will try that.
THANKS MATT
Is there some way I can force/require them to use a date (or date range)?
February 2, 2009 at 9:30 am
Thanks Grant,
I'll experiment with both those options and look into using 08.
February 2, 2009 at 9:05 am
Thanks for answering Matt,
Yes this table is kind of a troubleshooting table. So, there are techs that need to see real time info.
I was trying to think of a...
February 2, 2009 at 9:04 am
Viewing 15 posts - 556 through 570 (of 598 total)