• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/4

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

4 Cards in this Set

  • Front
  • Back
Cost Threshold for Parallelism - use for
To specify the threshold at which SQL server creates and runs parallel plans for queries. SQL server creates and runs a parallel plan for a query only when the estimated cost to run a serial plan for the same query is higher than the value set for the cost threshold for parallelism
cost Threshold for Parallelism - when/what
Set on symmetric multiprocessors. used actively when a mix of short and longer queries is run. Short queries run serial plans, longer use parallel plans. The value of the Cost Threshold determines which are considered short.
cost threshold for parallelism - when ignored
1. your computer has one processor.
2. Only a single CPU is available to SQL server because of the affinity mask config option
3. max degree of parallelism option is set to 1.
cost threshold for parallelism - tsql - example
is an advanced option, Show Advanced Options command must be set to 1 for sp_configure.
sp_configure 'show advanced options', 1;
GO
reconfigure;
GO
sp_configure 'cost threshold for parallelism', 10;
GO
reconfigure;
GO