Forum Replies Created

Viewing 15 posts - 361 through 375 (of 489 total)

  • RE: Detecting SQL Servers on a network

    You can also download MAP 5.0. This is the Microsoft Assesment and Planning Toolkit. It's free and does a comprehensive investigation of your environment. You pretty much point it at...

  • RE: Speeding Up System

    There are so many possibilities here, and it may not be possible for the forum to help you as they can't get enough detail and aren't hands on. You may...

  • RE: MAXDOP - How many CPU's does it use

    iqtedar (8/11/2010)


    irrespective of the value of MAXDOP, Cost threshold will always play a role?

    Not true, Cost Threshold will play a role if MAXDOP is NOT EQUAL TO 1.

    This is true...

  • RE: Speeding Up System

    chris.lawrie (8/11/2010)


    user query times in the diary are about 20secs and the query time using sql profiler was only about 2 secs.

    On looking into the Task Manager on the Server...

  • RE: RESTORE

    sqlbee19 (8/11/2010)


    Question - Is there any way to a make a fully recovered database to no recovery mode or stand by mode.

    A neat trick is to always...

  • RE: MAXDOP - How many CPU's does it use

    Cost Threshold is instance wide and doesn't have a query hint option, you can see the value if you do an sp_configure.

    I would assume if you set MAXDOP = 0...

  • RE: MAXDOP - How many CPU's does it use

    GilaMonster (8/10/2010)


    Leo.Miller (8/10/2010)


    Some DBAs feal this is better managed by increasing the Cost Threshold for Parallelism, typically to 30 seconds.

    Just one comment - cost threshold is not measured in...

  • RE: MAXDOP - How many CPU's does it use

    MAXDOP is not a flag, it's a parameter that can be set from 0 - 64, reperesenting the number of threads that can be created in a parallel query.

    MAXDOP =...

  • RE: MAXDOP - How many CPU's does it use

    When you say you have MAXDOP enabled, I assume you mean you have it set to MAXDOP = 0. This is the default and it means SQL will use as...

  • RE: batch code - verify

    Tara-1044200 (8/8/2010)


    I am using the following code to run the update in batched so that it wont take full log space,please verify if this is really doing transactions in batches...

  • RE: Insert slowing down

    Have you tried running the load with PerfMon running? Check disk IO activity, waits, read/writes per second, CPU usage, Memory Usage, Buffer Cache hit ration.

    Loading 4 million rows at 400k...

  • RE: Restart SQL Server service on a cluster environment

    What I want to know is: Why do you need to "clean TempDB?" TempDB is just that, temporary! Objects created there disappear when their creating SPID disconnects. If this isn't...

  • RE: Question to Experts

    An odd bit of behaviour I've noted with dropping databases is that, if the database is OffLine when you drop it, the physical files are not deleted.

    Does anyone know why...

  • RE: Stored Procedure - Locking Issue

    Besides the fact that the code is really very inefficiently (dare I say badly) written, the first obvious thing that could be causing the deadlock is the fact that there...

Viewing 15 posts - 361 through 375 (of 489 total)