Examples/Resources/SqlServerMaxDop/1-SetMaxDopToOne.ps1
<#
.EXAMPLE This example shows how to set max degree of parallelism server configuration option with the value equal to 1. #> Configuration Example { param ( [Parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] $SqlAdministratorCredential ) Import-DscResource -ModuleName SqlServerDsc node localhost { SqlServerMaxDop Set_SQLServerMaxDop_ToOne { Ensure = 'Present' DynamicAlloc = $false MaxDop = 1 ServerName = 'sqltest.company.local' InstanceName = 'DSC' PsDscRunAsCredential = $SqlAdministratorCredential } } } |