Forum Replies Created

Viewing 15 posts - 5,506 through 5,520 (of 6,486 total)

  • RE: Should DBA's need to know the physical details of a SAN??

    TheSQLGuru (12/8/2007)


    Two points you are missing in the performance equation Colin. With a SAN it isn't just about the disk I/O capability. SANs usually come with large (sometimes...

  • RE: Is Licence copy of Sql Server needed even for localhost\report

    The error you're getting assumes that you're trying to publish to a local IIS installation. In order to do that you'd need SSRS installed on that machine. You...

  • RE: Case, IF or something different

    Try this on:

    select a.*

    update a

    set Repflag='X'

    from volume a

    where exists (

    select *

    from volume b

    where

    b.id=a.id

    and b.perEndDate=dateadd(day,-1,dateadd(month,-1,dateadd(day,1,a.perenddate)))

    and a.AchieveLev<b.achieveLev)

  • RE: Hidden RBAR: Triangular Joins

    GilaMonster (12/8/2007)


    An index on a column does not guarantee that data will be returned in that order. Unless an order by is specified, you cannot be sure that the data...

  • RE: Identify letter vs. number

    You can do it a few ways. Personally I'm a fan of using .NET regular expressions to do just that, but that involves allowing CLR integration, which some are...

  • RE: Hidden RBAR: Triangular Joins

    cs_troyk (12/7/2007)


    It is a computational model that says nothing of the physical implementation.

    The one that doesn't say anything of the physical implementation is the Mathematical model. While the...

  • RE: Rowcount

    Ramesh (12/6/2007)


    RichardB (12/6/2007)


    Ramesh (12/3/2007)


    I wonder, whose gonna help those guys who were daring to do that!!!:D

    It's probably STILL trying to commit....LOL

  • RE: SQL Server to Groupwise

    Steve Jones - Editor (9/15/2003)


    I did find that Groupwise has a MAPI interface, but not sure if this will work.

    Upgrading a server tomorrow and will try some integration, but since...

  • RE: All I Want For Christmas Is ...

    Steve Jones - Editor (12/7/2007)


    Never had much of a preference on mice, but let us know how it goes, Will.

    Matt, what's an oodle? Is that a measure for 10TB 🙂

    If...

  • RE: Hidden RBAR: Triangular Joins

    Ramesh (12/7/2007)


    Before 2K5, many a times, we used the following methodology in our financial applications to get the running count for records. People do argued on this stating that...

  • RE: Hidden RBAR: Triangular Joins

    Christian Buettner (12/7/2007)


    Hi Matt,

    The query I "wrote" was just a copy of the query that Chirag posted.

    Oops - i guess I missed that one...sorry!

  • RE: All I Want For Christmas Is ...

    Stephanie J Brown (12/7/2007)


    Wow, I hate to break the trend, but despite my very good life (and the new CTO who is making things MUCH better at work :D), there...

  • RE: Hidden RBAR: Triangular Joins

    Christian Buettner (12/7/2007)


    Hi Jeff, Chirag,

    I am not sure if I misunderstood something, but the SQL Statement does NOT utilize a "triangular join":

    Select orderid,orderdate,productid

    from orders O INNER JOIN orderdetails OD

    On O.orderid...

  • RE: Index Scan vs Index Seek

    A seek means that you are looking for specific value(s) and the index provides you with the best way to do it. This also applies to specific ranges of...

  • RE: Multiple tables select performance - is 90 seconds normal?

    I don't know if we can breach the 90 second barrier you have, but using temp tables (expecially indexed ones) to pre process some of this should pretty much guarantee...

Viewing 15 posts - 5,506 through 5,520 (of 6,486 total)