Viewing 5 posts - 1 through 5 (of 5 total)
Great article, and an excellent technique I've been utilising (with care!) for a while.
I do however raise an argument against your statement that "The "Quirky Update" will work just fine...
January 31, 2012 at 4:16 am
So now we've tracked it down to a slow call to the cluster DTC service running the "Get Address" eventsubclass
this is causing an error on the client of "eventid=TRANSACTION_PROPOGATION_FAILED_CONNECTION_DOWN_FROM_REMOTE_TM"
We can...
November 17, 2011 at 7:21 am
Told you there was a more efficient way of doing it 🙂
November 17, 2011 at 3:45 am
probably more efficient ways, but this would do it:
DECLARE @Months TABLE (MonthYear VARCHAR(20))
DECLARE @DATE DATETIME
SELECT @DATE = CONVERT(VARCHAR, @FromDate, 106)
WHILE @DATE < @ToDate
BEGIN
INSERT @Months SELECT...
November 17, 2011 at 3:15 am
We have US and UK offices, and often encountered this problem with one user getting one result and another a different one for the same "DATEPART(dw" statement (as the DATEFIRST...
February 19, 2010 at 3:07 am
Viewing 5 posts - 1 through 5 (of 5 total)