Freigeben über


UpdateStatistics-Methode (StatisticsScanType, Int32, Boolean)

Aktualisiert Statistic-Objekte, die diese Spalte mithilfe eines Stichprobenscans überwachen.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
Public Sub UpdateStatistics ( _
    scanType As StatisticsScanType, _
    sampleValue As Integer, _
    recompute As Boolean _
)
'Usage
Dim instance As Column
Dim scanType As StatisticsScanType
Dim sampleValue As Integer
Dim recompute As Boolean

instance.UpdateStatistics(scanType, sampleValue, _
    recompute)
public void UpdateStatistics(
    StatisticsScanType scanType,
    int sampleValue,
    bool recompute
)
public:
void UpdateStatistics(
    StatisticsScanType scanType, 
    int sampleValue, 
    bool recompute
)
member UpdateStatistics : 
        scanType:StatisticsScanType * 
        sampleValue:int * 
        recompute:bool -> unit 
public function UpdateStatistics(
    scanType : StatisticsScanType, 
    sampleValue : int, 
    recompute : boolean
)

Parameter

  • sampleValue
    Typ: System. . :: . .Int32
    Ein Int32-Wert, der die Anzahl von Zeilen oder den Prozentsatz der Gesamtzahl von Zeilen angibt, die bei einem Stichprobenscan verwendet werden sollen. Dieser Parameter ist nur erforderlich, wenn der scanType einen Stichprobenscan angibt.
  • recompute
    Typ: System. . :: . .Boolean
    Ein Boolean-Wert, der angibt, ob die Statistiken automatisch neu berechnet werden.
    True gibt an, dass die Statistiken automatisch neu berechnet werden. Andernfalls ist der Wert False.

Hinweise

HinweisHinweis

Columns based on the UserDefinedTableType object cannot be modified and this method generates an exception.