max worker threads

  • Hi,

    We have dedicated sqlserver database system.

    it has 8 processors and 8 GB Ram...

    Let me know how many max worker threads we will have for this configuration.

    Thanks in advance


    Kindest Regards,

    karthik

  • Default value of max working thread is 255. So anything over 255 will slower down the performance.

    If your application is OLTP then i would suggest to keep max dop 0 or if OLAP then incraese the value equal to your physical processor.

  • The default configuration for SQL Server should be used unless you have a demonstrated problem that requires a different configuration. This is to include the Max Degrees of Parallelism for OLTP's as a well. Even for transactional work loads, parallel processing is beneficial if the hardware supports it. If you find large CXPACKET wait types during query processing, then you might look at changing the Parallelism setting to adjust, or setting it to MAXDOP 1 using query hints for problemattic queries, but you shouldn't change the setting as a blanket rule.

    Jonathan Kehayias | Principal Consultant | MCM: SQL Server 2008
    My Blog | Twitter | MVP Profile
    Training | Consulting | Become a SQLskills Insider
    Troubleshooting SQL Server: A Guide for Accidental DBAs[/url]

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply