Forum Replies Created

Viewing 15 posts - 571 through 585 (of 812 total)

  • RE: Combining union and union all

    I get it right, but I disagree with explanation:

    If at least one 'Union' is used, duplicates will be removed from the entire final result set, no matter where the 'Union'...

  • RE: Full Recovery Model

    What do you mean for "created and loaded database"?

  • RE: Three Attack Vectors in SQL Server 2005

    Good, very good article!

    Thank you!

    🙂

  • RE: BETWEEN

    I couldn't believe, it's too easy!

  • RE: Not In

    Same problem if you specify a subquery in the NOT IN clause instead of values.

    If one row returned from the subquery contains NULL, the main query doesn't return rows.

    SELECT *...

  • RE: Arithmetic 1

    This script demonstrates some problem with implicit conversion:

    declare @v-2 varchar(30)

    ,@f float

    -- here you think it is all right and it is

    ...

  • RE: Arithmetic 1

    This kind of error also is independent from version of sqlserver.

    You can not use - * / operators with chars

  • RE: Table Value Constructor 1

    Very good question.

    I really really really learnt a new good feature.

    Thank you a lot.

    😛

  • RE: Model Database

    Hugo Kornelis (2/22/2012)


    Checked and confirmed that it works the same here.

    What apparently happens is that SSMS gets all properties from the model database and uses them to pre-populate the properties...

  • RE: Model Database

    BrainDonor (2/22/2012)


    However, try this through the SSMS GUID. If I change 'Database Read Only' to TRUE from the Properties and then right-click on 'Databases' to create a New Database, it...

  • RE: Model Database

    Koen Verbeeck (2/22/2012)


    Damn you MSDN!

    Any documentation that supports the correct answer?

    I found this: http://msdn.microsoft.com/en-us/library/ms190249.aspx

    It states that:

    To change the default values for any one of the database options for all newly...

  • RE: Hash Join

    I think there's a BUG in the "Contribution Editor". I couldn't believe that so many questions are wrong.

    😎

    Steve, please correct the points and the "Contribution Editor".

  • RE: Hash Join

    ipounder (2/20/2012)


    Good question that made me think. Shame the quoted reference doesn't match the 'correct' answers.

    +2

  • RE: Indexed Views

    Hugo Kornelis (2/10/2012)


    I hate questions where I have to second-guess the author. Did the author mean that the optimizer would choose to use the indexed view automatically? Or did he...

  • RE: Indexed Views

    I know that query optimizer use index on view only for some edition, but with noexpand you can force the use of index. I still working with sql2000. In sql2008...

Viewing 15 posts - 571 through 585 (of 812 total)