Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Resource Governor

    "Select all that apply" means that it is a multiple choice question.

    So there should be check boxes instead of radio buttons.

  • RE: Identity Columns

    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

Viewing 2 posts - 1 through 2 (of 2 total)