Forum Replies Created

Viewing 15 posts - 1,921 through 1,935 (of 3,660 total)

  • RE: The Office

    I think the whole "can be done cheaper in a low cost country" is a case of perception vs reality. The problem comes when it is the perception of...

  • RE: A genuine use for a SQL CLR Aggregate

    Solomon Rutzky (12/29/2010)


    The only issue I have is with your statement that "median" is not a good case for a CLR aggregate as it might "require a substantial portion of...

  • RE: The Office

    If I work from home I eliminate a 2 hour round trip commute. This means I can either start earlier or have a lie in. When I finish...

  • RE: A genuine use for a SQL CLR Aggregate

    On the subject of the expensive sort in the execution plan I had a note back from Bob Beauchamp saying that there is an internal stream aggregator operation that causes...

  • RE: A Quick Look at the MPP World

    One point I forgot to mention was a data warehouse appliance is a self contained unit so you won't be cannibalizing your existing storage and IO. There is obviously...

  • RE: deleting huge records From Table

    Paul White NZ (11/22/2010)


    Since this is in the SQL Server 2008 forum, you could also use bulk-logged INSERT...SELECT then ALTER TABLE...SWITCH.

    I thought SWITCH only worked in Enterprise Edition?

    If you have...

  • RE: Indexed Views

    In the rare cases when I've felt the need for RBAR I've found that in some cases cursors are faster than WHILE loops but only when I don't have to...

  • RE: Appliances - Just Add Data

    I wrote up my thoughts on MPP appliances earlier this year http://www.sqlservercentral.com/articles/MPP/70845/.

    They are not a marketing hype thing. Green plum has been bought by EMC, Neteeza has been bought...

  • RE: Indexed Views

    Another easy mistake to make is to put a clustered index on the view that conflicts with the clustered index in the base tables. I now hold the world...

  • RE: 2 questions... first x > '' vs x <> ''

    grahamc (11/15/2010)


    Well one argument (not seen in this thread yet) for the case of using NULL values is the introduction of SPARSE columns. This link discusses the space savings based...

  • RE: SQL Server vs. Open Source Databases

    There are subtle differences between the different RDBMS's that mean chop and change may not be as cheap as it should be.

    You could be faced with quite a bit more...

  • RE: 2 questions... first x > '' vs x <> ''

    I've been trying to get people out of the habit of using != but they're just not buying my "<> is more readable". Do you have another reason to...

  • RE: 2 questions... first x > '' vs x <> ''

    If you have to build application code to scrub nulls then surely it would have been better not to have them in the first place. Surely allowing nulls just...

  • RE: 2 questions... first x > '' vs x <> ''

    WHERE s.column >'' will be marginally more efficient than WHERE s.column<>''

    Nulls are sometime necessary, for example if I have a DrivingConvictions table in a car insurance database I might have

    DriverID

    OffenceCode

    PenaltyPoints

    IllegalSubstanceReading

    If...

Viewing 15 posts - 1,921 through 1,935 (of 3,660 total)