Viewing 15 posts - 10,111 through 10,125 (of 22,213 total)
Steve Jones - SSC Editor (1/28/2013)
Grant Fritchey (1/28/2013)
January 29, 2013 at 4:45 am
Here's how to manually update statistics. You'll need to use the WITH FULLSCAN option. This documentation is for 2005, but the 2000 syntax is the same (if I remember correctly).
January 29, 2013 at 4:42 am
One point worth making to the management team, elimination of foreign key constraints also takes choices away from the optimizer. I have an example up on my blog[/url].
And I'm...
January 29, 2013 at 4:15 am
If the query plans are truly identical, it doesn't sound like bad parameter sniffing. Are you sure they're absolutely identical or do they just have the same operators? Look at...
January 29, 2013 at 3:59 am
Not for a query that is running, no. You can use the plan handle to recompile a query in cache, but if it's actively running, it will have to complete....
January 29, 2013 at 3:56 am
Every one of these
CHARINDEX(',' + (CAST(parent.vWorkSpaceId AS varchar(1000))) + ','
Is absolutely going to kill performance. Functions against columns in the WHERE clause requires scans and there is no way around...
January 29, 2013 at 3:55 am
While yes, there are a million things I'd do to tune that query, it's not so complex that you should be seeing memory issues. I'd say you may want to...
January 29, 2013 at 3:50 am
NOCHECK only applies to foriegn keys and check constraints, not unique constraints. Details are in the Books Online. In order to satisfy the value UNIQUE, it kind of has to...
January 29, 2013 at 3:38 am
I'm starting to pull my hair out over on Ask. Can the super beings of this discussion take a look please? And be nice. I think the person on the...
January 28, 2013 at 6:11 am
Yes, the default behavior is that 20% of the data must be modified before statistics are updated automatically (for those desperate to correct me, yes, I know it's more complex...
January 28, 2013 at 5:22 am
opc.three (1/26/2013)
Grant Fritchey (1/25/2013)
January 26, 2013 at 7:51 am
bitbucket-25253 (1/25/2013)
Steve Jones - SSC Editor (1/25/2013)
Are the posted posts about the posted questions and posted answers getting posted worse-ly than previous posters posted in the posted past?
NO, NO, NO,...
January 25, 2013 at 11:28 am
Even on large systems, it comes down to the code, the indexes and the statistics. You've got to structure the indexes appropriately to support the queries you need to run....
January 25, 2013 at 10:39 am
sqlnaive (1/25/2013)
January 25, 2013 at 8:59 am
surilds (1/25/2013)
Any Third party tool provides this information??
Are there? Sure, but what you want is pretty simple. Extended Events is a snap to set up and will do exactly what...
January 25, 2013 at 8:49 am
Viewing 15 posts - 10,111 through 10,125 (of 22,213 total)