Viewing 14 posts - 1 through 14 (of 14 total)
Only getting a couple of hundred IOps per 15K drive isn't really accurate because in reality we don't do a fully random workload across the entire disk.
I wrote the blog...
May 16, 2014 at 6:59 am
I take the business of customer data integrity very seriously - its no joking matter and there should be no room for possible corruption of that data imho.
Lol - the...
February 18, 2010 at 4:42 am
Yes - I do mean a cursor; a static one and not a "update where current".
I don't honestly know what your problem is here Paul - even Jeff has found...
February 18, 2010 at 4:22 am
Hi Gabriel,
I think you've hit why myself, Hugo and others have been saying don't use this Quirky Update technique.
Look at another approach - seriously; an approach that works, is documented...
February 18, 2010 at 3:49 am
Paul White (2/4/2010)
2. Yes, you would need to test...
February 4, 2010 at 6:52 am
Its on my list to blog about but I'm concentrating on my MSc at the moment, here you are....
If you hunt around the presentation may be online - I did...
February 4, 2010 at 6:22 am
Not in my testing they don't!
I've presented a number of times at UK user group meeting on running totals; I have an example that proves the opposite.
The cursor was faster...
February 4, 2010 at 6:07 am
Jeff Moden (2/4/2010)
tony rogerson (2/4/2010)
February 4, 2010 at 6:06 am
Relying on query hints to force a side effect feature is just madness - you are relying on the behaviour of the engine in specific product versions (and builds).
Seriously -...
February 4, 2010 at 5:57 am
Cursor is imho the best approach for this because you can put an ORDER BY - you have repeatable results with syntax that is well defined in terms of behaviour...
February 4, 2010 at 2:10 am
Using non-deterministic functions like ROW_NUMBER and NEWID need to be done carefully - my blog article: http://sqlblogcasts.com/blogs/tonyrogerson/archive/2008/06/12/bug-in-inline-expansion-of-non-deterministic-functions-in-derived-tables-and-cte-s-causes-incorrect-results.aspx explains the serious bug that exists in SQL Server 2005 with...
May 12, 2009 at 1:18 am
Also check out my blog article: http://sqlblogcasts.com/blogs/tonyrogerson/archive/2008/03/28/send-table-or-view-as-embedded-html-lt-table-gt-in-an-email-stored-procedure.aspx which given a table or view will convert it into html and email it.
Tony Rogerson, SQL Server MVP
http://sqlblogcasts.com/blogs/tonyrogerson
http://sqlknowhow.com -- Real world training
June 24, 2008 at 10:51 pm
Using columns in functions means SQL Server can no longer do a seek; instead it must do a scan.
If there was a unique index on CustomerID, orddate.
Say you had 1...
January 16, 2008 at 5:55 am
Derived tables are a great performance optimisation tool but always check because the derived table approach is not always the best and temporary tables are sometimes a necessary approach.
The derived...
January 16, 2008 at 12:56 am
Viewing 14 posts - 1 through 14 (of 14 total)