Forum Replies Created

Viewing 15 posts - 271 through 285 (of 819 total)

  • RE: SQL Jobs

    Rune Bivrin (3/26/2015)


    Let's assume that there's no output file already there in the location.

    If the file is already available in the location, will it write anything to the file?

    Which is...

  • RE: Delete

    sipas (3/24/2015)


    Carlo Romagnano (3/24/2015)


    Extremely easy!

    Why 2 points?

    🙂

    Speak for yourself - plenty of people get confused about multiple foreign keys and cascade deletes. They're all extremely easy when you know the...

  • RE: Delete

    Extremely easy!

    Why 2 points?

    🙂

  • RE: The mysteries of life, the beginning of the 20th century

    Simpaticissimo!

    :-D:-D:-D:-D:-D

  • RE: Nested Break

    patricklambin (3/17/2015)


    Good question but an easy one.

    I have appreciated because it is an example of "bad code" ( too difficult to understand ) that I have met too many times...

  • RE: Columnstore Indexes

    Hany Helmy (3/15/2015)


    Gr8 question, thanx 🙂

    Did anyone tried this feature before? And is there any actual performance gained?

    I tried just a little. The answer is as usual "depends".

    If you query...

  • RE: Maximum number of databases per instance

    Now, I want to try!

    😀

  • RE: ColumnStore index

    DataTherapist (2/23/2015)


    I don't understand why the 'physically stored' options is not considered one of the right answers.

    What's the fine details here that I'm missing?

    A clustered columnstore index is regulating how...

  • RE: ColumnStore index

    Interesting, I just learned about them last two weeks.

    😀

  • RE: Signing options

    Koen Verbeeck (2/20/2015)


    Carlo Romagnano (2/20/2015)


    ADD [ COUNTER ] SIGNATURE TO module_class::module_name

    BY <crypto_list> [ ,...n ]

    <crypto_list> ::=

    CERTIFICATE cert_name

    |...

  • RE: Signing options

    ADD [ COUNTER ] SIGNATURE TO module_class::module_name

    BY <crypto_list> [ ,...n ]

    <crypto_list> ::=

    CERTIFICATE cert_name

    | CERTIFICATE cert_name [ WITH...

  • RE: Empty TABLE

    Very nice!

    😀

  • RE: What is the "same query"?

    pmadhavapeddi22 (2/11/2015)


    I have checked the rows in sys.syscacheobjects before/after running the selects, found 5 new rows with all the selects mentioned in QOD.

    select * from sys.syscacheobjects where objtype ='adhoc' and...

  • RE: The PIVOT

    Sean Lange (1/27/2015)


    Carlo Romagnano (1/27/2015)


    Strange, but the version with PIVOT is a bit slower than that with GROUP BY. See execution plan!

    with c

    as(

    SELECT * FROM (VALUES

    (1,2013,1,100)

    ,(1,2013,1,200)

    ,(1,2014,0,500)

    ,(1,2014,1,200)

    ,(2,2013,1,200)

    ,(2,2013,1,200)

    ,(2,2014,1,100)

    ,(2,2014,1,100)

    ) AS V([Customer],[Salesyear],[Complete],[Amount])

    )

    SELECT

    ...

  • RE: The PIVOT

    Raghavendra Mudugal (1/27/2015)


    Carlo Romagnano (1/27/2015)


    Strange, but the version with PIVOT is a bit slower than that with GROUP BY. See execution plan!

    ...

    actually I was doing the same thing on...

Viewing 15 posts - 271 through 285 (of 819 total)