Viewing 15 posts - 5,356 through 5,370 (of 5,843 total)
For those interested, here is a document written by Itzik Ben-Gan and Sujata Mehta with an incredible amount of information on the OVER enhancements I have been speaking of: ...
February 1, 2008 at 12:48 pm
Philippe Cand (2/1/2008)
Jeff Moden (1/31/2008)
Philippe Cand (1/31/2008)
February 1, 2008 at 12:11 pm
An unpatched 2000 SP4 is not a good place to be, especially if you are using AWE. There were some significant fixes posted to that subsystem, to the optimzer,...
February 1, 2008 at 12:05 pm
Itzik and some other MVPs have been pushing hard for improvements such as the one I listed to Transact SQL. This is one of several they are pursuing. ...
February 1, 2008 at 10:47 am
Yes to 2005 SP3. And I want it MUCH more thoroughly tested than SP2 was!!!
February 1, 2008 at 9:40 am
This just back from Itzik. He states that the running totals problem can be solved by this construct:
Yes, that would be the missing ORDER BY and ROWS subclauses of...
February 1, 2008 at 8:40 am
I posted about this topic on the SQL Server MVP private forum. I will follow-up if anyone there comes up with anything. I specifically asked Iztik Ben-Gan if...
February 1, 2008 at 7:38 am
Yes - a clustered index scan IS literrally a full table scan.
January 31, 2008 at 4:34 pm
Couldn't you have a scan running under NOLOCK be joined by a TABLOCKX scan?
January 31, 2008 at 1:47 pm
I too missed the stated use of TABLOCKX, although that will reduce the usefulness of the query since I know I wouldn't allow that in MY production system unless it...
January 31, 2008 at 11:45 am
Few things to test:
1) read uncommited isolation level and also NOLOCKs (if not already tested)
2) snapshotted table, with modifications
3) partitioned tables
4) table spread across multiple file groups
5) Enterprise Edition where...
January 31, 2008 at 10:24 am
I can say with almost certainty that you were winding up with a query plan that included nested loops for LOTS of rows (also possibly on unindexed fields). Your...
January 31, 2008 at 10:13 am
Documentation (with examples) on DISKPART can be found by a search on support.microsoft.com or a general websearch.
January 31, 2008 at 9:04 am
I just now noticed that you specified UPPER levels of the indexes. Do you have the Pad Index option turned on?
January 30, 2008 at 8:39 am
See BOL for CREATE INDEX and ALTER DATABASE. Also note that if your LUN isn't on different spindles you may not receive quite the perf boost you were hoping...
January 29, 2008 at 10:18 am
Viewing 15 posts - 5,356 through 5,370 (of 5,843 total)