Forum Replies Created

Viewing 15 posts - 421 through 435 (of 658 total)

  • RE: SELECT options

    Hugo Kornelis (4/13/2012)The syntax used in this question is deprecated

    Is it definitely deprecated? The help page doesn't say so, just that the parentheses are optional for backward compatibility and recommends...

  • RE: Foreign key

    I got it wrong, my reasoning being that disallowing "yes with triggers" would be grossly unfair to those with English as a second language so it must be the correct...

  • RE: VIEWS 5

    All three answers are in fact correct.

    "Returns from step 4 Returns 5 columns and 2,155 rows of data" is true - it returns 5 columns and also another column.

    :Whistling:

  • RE: VIEWS 3

    L' Eomot Inversé (3/20/2012)

    But the question doesn't say "required to hold the create view statement ... It says "required for the the create view statement"

    I've read this several times...

  • RE: VIEWS 3

    Koen Verbeeck (3/20/2012)That is the space for the CREATE VIEW statement. That is stored in the sys.sql_modules catalog view. What I'm going after is that extra information is also stored...

  • RE: Looping

    Andrew Watson-478275 (3/16/2012)

    Not necessarily. The limit for table size is "how much disk have you got". If your DB is already filling the disk, you could hit the...

  • RE: Looping

    jeff.mason (3/16/2012)


    So if you look at this strictly as a syntax issue, the question is sound.

    A fair point. Depends whether you thought (rightly) that the question was about forgetting to...

  • RE: Looping

    The correct answer is 'error at line 8', when you run out of disk space, so the closest answer is 'error at line 7'.

  • RE: CREATE ROLE

    Correct answers: 50% (104)

    Incorrect answers: 50% (102)

  • RE: Temporary Objects 2

    sqlmunkee (3/9/2012)


    Even if you hadn't added the constraint to the table, the second program would still fail because there would already be the temp table from the first program.

    That's not...

  • RE: Temporary Objects 2

    Got this right as I was hit by it a few weeks ago after an attempt to "tidy up" some code by naming the constraints :blush:

  • RE: Not In

    you can also show the explanation is wrong by changing the where clause to

    where s.Stat not in (cast(Null as varchar(20)), 'Idle')

    Whenever using Nulls in where clauses, comparisons should use "is...

  • RE: Arithmetic 1

    Yet another question that tells us not to rely on implicit conversion...

  • RE: EXECUTE

    sknox (2/14/2012)

    Obligatory pedantic complaint: they're parentheses, not brackets. These are brackets: []. (For completeness, these are braces: {}.)

    Where I come from, () are brackets, [] are square brackets, and {}...

  • RE: Indexed Views

    On Enterprise edition the results are the same - the view index is used.

    On both this and Developer edition I get a warning for each statement

    "Warning: Index hints supplied for...

Viewing 15 posts - 421 through 435 (of 658 total)