Forum Replies Created

Viewing 15 posts - 8,491 through 8,505 (of 22,214 total)

  • RE: Long-running query with no impact on the server

    A UNION statement is an aggregation, so, unless you're doing UNION ALL, it's not the sum of the three queries, but the aggregation of the three. Check the execution plan...

  • RE: Setting job schedule

    You can specify a stop time for a trace. So you just need the job to start it and then it will run until the @stoptime property. You can read...

  • RE: Weird problem in database backups

    Those are waits related primarily to disk. Are you backing up across the network? Otherwise, I'd focus right on the disk to see what issues there might be there.

  • RE: Telepresence

    WHOOP! Can't wait to use the robot for presentations.

    "ASK A QUESTION! YOU HAVE 10 SECONDS TO COMPLY. 3.... 2.... 1...."

  • RE: Are the posted questions getting worse?

    GilaMonster (4/1/2014)


    Ok...

    "The language is expressive, easily readable and values explicitness. Abbreviations and corrupted spelling should be avoided in variable names"

    and the string data type is 'str'

    <snicker>

  • RE: Could having SSMS open for long periods of time, cause locking?

    I've never seen SSMS by itself cause any issues and I've left it open for days at a time.

  • RE: SQL beginner - books and material

    Ummm... You might not want to move to working as a DBA if network admin was stressful. DBA work becomes hyper-stressful. Think about it, one of the single most important...

  • RE: Copy DB from Prod to QA

    New Born DBA (3/31/2014)


    Thanks everybody for replying. Can I use import export utility? Just asking.

    This will put more load on the production system than using the backup and restore process.

  • RE: Can you determine an estimated execute time of an SQL statement

    Even if you do tests to determine an approximate run time, you can still hit resource contention or blocking issues that cause that time to change. This is a tough...

  • RE: Like operator - Query performance issue

    Partitioning is not primarily a performance tuning mechanism. It is primarily a data management mechanism. There are cases where you can get performance improvements, but you need to remember that...

  • RE: Batch Delete is Slow :angry:

    The only suggestion I had for the higher versions of SQL Server is that you could use the ROW_NUMBER to break up the deletes into smaller groups. You still have...

  • RE: Clustered Index Delete

    Nope. You got it. If you're inserting to a table with a clustered index, it's inserting into the clustered index. That event, by itself, is absolutely not a performance problem.

  • RE: Clustered Index Delete

    A clustered index stores the data. So when you run a delete statement, it goes to the clustered index to delete the data. That's how it works.

  • RE: Batch Delete is Slow :angry:

    As I said before, your choices in 2000 are more limited. Filter the data on additional criteria to reduce the batch size so you're deleting in smaller chunks and providing...

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (3/28/2014)


    GilaMonster (3/28/2014)


    Ed Wagner (3/28/2014)


    Grant - You have booth babes??? :w00t:

    Grant *is* the booth 'babe' 🙂

    What am I?

    We're still working on that.

Viewing 15 posts - 8,491 through 8,505 (of 22,214 total)