Viewing 15 posts - 1 through 15 (of 479 total)
I'd have gone for 10 or 11 since, given a startup time of 5 minutes, it comes online at 7:05 and goes offline at 17:05, which is exactly 10 hours,...
May 24, 2023 at 2:18 pm
You say 'personally prefer' - how does your solution compare to PIVOTs for performance on large result sets?
February 3, 2014 at 6:23 am
It seems the solution is to make sure the type is binary comparable and to set IsByteOrdered = true in the arguments to the Microsoft.SqlServer.Server.SqlUserDefinedType attribute.
Of course, the problem...
February 14, 2013 at 1:02 pm
Eric M Russell (1/21/2013)
January 22, 2013 at 8:12 am
kaspencer (12/23/2011)
January 11, 2013 at 8:51 am
As explained in several answers, the 'solution' created a UNIQUE INDEX (on the non-NULL parts of the table) not a UNIQUE CONSTRAINT on the entire table.
December 24, 2012 at 5:28 pm
I was about to argue that 1,4 & 5 should be the correct answer, but read your comment and realized that you've already said I was right - even though...
December 24, 2012 at 5:16 pm
I got this right although, as mentioned by others, none of the answers is correct. The first 2 are OK and both return 'rename_test', but using the ALTER script to...
December 19, 2012 at 6:51 am
I correctly remember that only one table can have IDENTITY_INSERT ON, but forgot that it doesn't automatically switch to a new table. Hence the habitual code ...
SET IDENTITY_INSERT TblA1 ON;
INSERT...
December 19, 2012 at 6:38 am
(Bob Brown) (12/19/2012)
December 19, 2012 at 6:27 am
I just tried it with 2008R2 and, as expected, got 2 error messages.
Msg 195, Level 15, State 10, Line 12
'TRY_PARSE' is not a recognized built-in function name.
Msg 195, Level 15,...
December 19, 2012 at 6:23 am
I can't see anywhere in the question where it says this is supposed to be for 2012. Presumbly, it was thought that it's enough that TRY_PARSE and PARSE don't exist...
December 19, 2012 at 6:14 am
I eventually did a remove/re-install then updated to Service Pack 1, which bypassed the need to install this update.
August 1, 2011 at 10:14 am
While not exactly a fix, I found a way to get past the problem!
Instead of just starting SETUP, I ran it from a command prompt using:
SETUP /ACTION=Install /SKIPRULES=PerfMonCounterNotCorruptedCheck
Of couse, this...
April 11, 2011 at 4:01 am
Viewing 15 posts - 1 through 15 (of 479 total)