Forum Replies Created

Viewing 15 posts - 3,211 through 3,225 (of 6,486 total)

  • RE: MatrixDB

    Rick Heiges (5/22/2008)


    Oracle RAC - How many companies are currently running it? If they are, how many nodes? I am not an Oracle afficiando, but I have heard...

  • RE: Difficult Table Query

    Or, as has been sugested previously - you can do it in a set-based fashion.

    this should do pretty well, especially when compared to Cursor methods. It does rely on...

  • RE: Update single row according to multiple criteria with a single update

    PW (5/22/2008)


    >>WHEN (Salary between 30000 and 40000) THEN Salary + 50000

    Wow, that's a greater than 100% salary hike. Where is this place, I want to apply for a job 😉

    oops....

  • RE: Executing DTS Package from Trigger

    Michael Earl (5/22/2008)


    No, it's not, so scratch that option.

    You are in a SQL 2005 forum, so I figured you were using 2005.

    However - a scheduled task that routinely looks for...

  • RE: Slow Running Query

    I only see a non-clustered index in what you posted. That being said - it's going to be hard to tell what is happening, without some clue as to...

  • RE: MatrixDB

    In all seriousness though - this just seems to hammer even further on what is usually the weakest link in high volume systems, i.e. the storage subsystem. It seems...

  • RE: MatrixDB

    Steve Jones - Editor (5/22/2008)


    I think this is a RAC competitor, just like Scalable Shared Databases or replicating to slaves.

    Log shipping existed in many installations before Microsoft built a support...

  • RE: Update single row according to multiple criteria with a single update

    Hmm...sounds a bit like homework.

    You probably want to take a look at the CASE statement, and use it appropriately in an UPDATE statement.

  • RE: The Hot DBA

    Anirban Paul (5/22/2008)


    Matt Miller (5/22/2008)


    Anirban Paul (5/21/2008)


    I agree with Steve, not all cos are like that. My Co gave me a paid holiday trip (expenses taken care by Cos) for...

  • RE: The Hot DBA

    Anirban Paul (5/21/2008)


    I agree with Steve, not all cos are like that. My Co gave me a paid holiday trip (expenses taken care by Cos) for 4 days seeing my...

  • RE: True Aging Report

    Jeff Moden (5/21/2008)


    Heh... I started reading this post and then saw your first reply... I knew you'd use the running balance trick... it just makes sense, here. Nicely done!

    Thanks...

  • RE: Query Results exceeding Max Number in 2005

    jeff.williams3188 (5/21/2008)


    Because then you can create your own and publish it to your own report server. Or, build a daily process to track growth by table.

    And better yet, if...

  • RE: Query Results exceeding Max Number in 2005

    jeff.williams3188 (5/21/2008)


    You can avoid the cursor and the call to sp_spaceused using the following (stolen 😉 from the standard report 'Disk Usage by Table').

    ;WITH partitionStats

    AS (SELECT

    ps.object_id,

    SUM(CASE

    WHEN (ps.index_id < 2)...

  • RE: Complicated Query !!

    Well - SQL Server 2005 has a PIVOT syntax, which would work just fine for what you're looking at.

    BOL describes it all here:

    http://msdn.microsoft.com/en-us/library/ms177410.aspx?wt.slv=RightRail

  • RE: Complicated Query!! ( cross-join )

    Please be careful not to double-post. It "dilutes" the conversation, and tends to peeve off the regulars.

    Let's continue the conversation over here:

    http://www.sqlservercentral.com/Forums/Topic504822-149-1.aspx

Viewing 15 posts - 3,211 through 3,225 (of 6,486 total)