Viewing 15 posts - 1 through 15 (of 67 total)
FYI - the OUTPUT clause is available in sql2k5 as well.
-a
April 4, 2010 at 10:36 pm
Thanks much for making it easy on me; all I have to do each 4/1 is send my coworkers a link to whatever prank you have written up. 🙂
April 1, 2010 at 8:19 am
Lock escalation is not your problem. If you are the only user, then lock escalation is certainly improving your query. Why pay the cost for lock management overhead when there...
March 24, 2010 at 8:59 am
We have a very similar set of dynamic sproc creation sprocs at my work. I find them useful in a general sense but (1) hard to look at and (2)...
July 23, 2009 at 7:35 am
SQL Server has ambitions to match this ability with its new snapshot isolation level. When enabled, SQL Server will maintain in tempdb a time-stamped "version store" of all data changes....
March 18, 2009 at 10:08 am
If your trim job has any significant number of rows in it, it is generally advisable to expire the rows in batches of N rows. One very easy way to...
March 12, 2009 at 9:43 am
JRodman (2/4/2009)
February 4, 2009 at 9:33 am
JRodman (2/4/2009)
February 4, 2009 at 9:20 am
dray (1/22/2009)
January 22, 2009 at 9:15 am
Ordering by newid() is pretty lackluster in the performance department, I assumed this article would cover some great new ways to randomize data 🙁
I've gotten by in a variety of...
January 15, 2009 at 8:51 am
I prefer keeping the notion of paging in the client space, in my opinion it is a cleaner API to use something like System.IO.StreamReader and provide input params defining the...
January 6, 2009 at 8:40 am
celticfire63 (10/17/2008)
October 17, 2008 at 8:34 am
I have designed a few tables that we expected to be very actively inserted/deleted against and grow as the business grows. In these cases I created each table on it's...
October 16, 2008 at 8:11 am
I have been using the same approach for my sql2k5 standard boxes with great success. I have found that I routinely want to know if a view is (1) an...
September 9, 2008 at 9:22 am
Note that there are a few characters that are not legal in xml.
From http://www.w3.org/TR/2006/REC-xml-20060816/:
[2] Char ::= #x9 | #xA | #xD |...
August 20, 2008 at 7:45 am
Viewing 15 posts - 1 through 15 (of 67 total)