Viewing 15 posts - 736 through 750 (of 3,221 total)
Hopefully you have an adequate computer at home. If so I would suggest purchasing a DEVELOPER EDITION of SQL Server 2008 and become familiar with it. Practice, for...
January 17, 2012 at 10:29 am
Amy.G (1/13/2012)
January 13, 2012 at 4:29 pm
Revenant (1/13/2012)
SQLRNNR (1/13/2012)
Cliff Jones (1/13/2012)
The word 'Always' should have made me think twice, but alas I only thought once.That is the key word that made me rethink.
+1
+1
January 13, 2012 at 10:56 am
Nice question... now as we approach the end of the week will Friday's
QOD be another tough one ?
January 12, 2012 at 8:36 pm
DeanORenO
you people on this forum are always complaining about the questions that are asked on the forums, either you complain that they are too simple, and that the poster should...
January 11, 2012 at 4:31 pm
Still a suprisingly low correct
Incorrect answers: 65% (183)
Total attempts: 283
January 11, 2012 at 6:20 am
Another nice easy question ......... Thanks
January 10, 2012 at 8:50 pm
Try this:
CREATE TABLE #domCategory(CategoryId INT,CD VARCHAR(40))
INSERT INTO #domCategory
SELECT 1, NULL UNION ALL
SELECT 2, 'something'
CREATE TABLE #Category(CategoryId INT, CD VARCHAR(40))
INSERT INTO #Category
SELECT 1,'Yes' UNION ALL
SELECT 2,'no'
MERGE #domCategory AS target
USING #Category AS...
January 10, 2012 at 3:09 pm
Easy QODs at the beginning of the week ... now what confusing, complex, obscure QOD will Steve post for Friday ?
January 9, 2012 at 10:09 pm
L' Eomot Inversé (1/9/2012)
January 9, 2012 at 11:31 am
Steve Jones - SSC Editor (1/8/2012)
Doh, copied the wrong item.corrected.
Too much snow boarding without sun glasses ?
January 8, 2012 at 9:32 pm
L' Eomot Inversé (1/8/2012)
SQL Kiwi (1/7/2012)
January 8, 2012 at 1:40 pm
Ninja's_RGR'us (1/7/2012)
Dev (1/7/2012)
January 7, 2012 at 5:29 pm
Here is an example from BOL for SQL Server 2008 ... Note that the first portion of the code shows how to perform what I believe what you want to...
January 6, 2012 at 10:01 am
To learn more about CHECKPOINTS I suggest reading Paul Randal's:
January 6, 2012 at 7:19 am
Viewing 15 posts - 736 through 750 (of 3,221 total)