Viewing 6 posts - 31 through 36 (of 36 total)
Good question, but the explanation should really mention that DBCC CHECKIDENT has two different behaviors based on whether or not there have been prior (non-truncated) rows present. I know...
December 26, 2013 at 11:59 am
Good question, but it does miss out on a good opportunity to point out that these two have the same result (in this particular case):
SELECT COALESCE(Col1, Col2) AS 'FirstNotNull' FROM...
September 20, 2013 at 11:38 am
For anybody like myself who was still a bit unclear, it may help to think of COALESCE as having 2 separate aspects. It needs to return a value, and...
June 3, 2013 at 9:18 am
Interestingly, while the answer does hold for 2005+, for us dinosaurs who still have a few SQL Server 2000 systems, it throws a parse time syntax error on the USER...
May 28, 2013 at 9:02 am
steven.bingham (3/28/2013)
...
Often times you can run stored procedures from many processes, like other stored
procedures, where there are different levels of transactions. The problem is that if you
write to...
March 28, 2013 at 10:44 am
Paul White (2/26/2011)
March 22, 2013 at 10:57 am
Viewing 6 posts - 31 through 36 (of 36 total)