Forum Replies Created

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

  • RE: Logical File Names

    -- Query 1

    ALTER DATABASE AdventureWorks2012

    ADD FILE (NAME=ADW2012 REPLACES Adventureworks2012_data)

    -- query 2

    ALTER DATABASE AdventureWorks2012

    ADD FILE (NAME=AdventureWorks2012_data, NEWNAME=AWD2012 );

    -- query 3

    ALTER DATABASE AdventureWorks2012

    MODIFY FILE (OLDNAME=AdventureWorks2012_data, Newname= AWD2012);

    -- query 4

    ALTER DATABASE AdventureWorks2012

    ADD FILE...

  • RE: integer lengths (II)

    Correct answer:

    When J is between -999,999,999 and -100,000,000 or between 1,000,000,000 and 2,147,483,647

  • RE: Logical Query Processing order

    Hi,

    all options are wrong where

    2nd and 4th options are same.

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