Viewing 2 posts - 1 through 2 (of 2 total)
"Select all that apply" means that it is a multiple choice question.
So there should be check boxes instead of radio buttons.
July 18, 2008 at 7:30 am
#845021
Here is an alternative solution without 'set identity_insert' 😉
INSERT INTO TEST WITH (KEEPIDENTITY) (Col1)
SELECT IDENT_CURRENT('Test') FROM OPENROWSET(BULK N'C:\boot.ini', SINGLE_BLOB) AS a
July 7, 2008 at 8:29 am
#838936