Share via


NoRecompute Property

Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 말고, 현재 이 기능을 사용하는 응용 프로그램은 수정하십시오.

The NoRecompute property controls statistics generation when the Index object is used to create a Microsoft SQL Server index.

구문

object
.NoRecompute [= value]

Parts

  • object
    An expression that evaluates to an object in the Applies To list
  • value
    TRUE or FALSE

Data Type

Boolean

Modifiable

Read/write before index creation. Read-only if referencing an existing index.

Prototype (C/C++)

HRESULT GetNoRecompute(LPBOOL pRetVal);
HRESULT SetNoRecompute(BOOL NewValue);

주의

If TRUE, SQL Server does not perform automatic data-distribution statistics update on the created index.

If FALSE (default), automatic data-distribution statistics update is performed.

Use the UpdateIndexStatistics, UpdateStatistics, or UpdateStatisticsWith method to force an update of index statistics for SQL Server indexes not configured for automatic update. Use the UpdateStatisticsWith method of the Table object to enable or disable automatic update of data-distribution statistics for an existing index.

Applies To:

Index Object

참고 항목

참조

UpdateIndexStatistics Method
UpdateStatistics Method
UpdateStatisticsWith Method (Column, Index)
UpdateStatisticsWith Method (Table)

도움말 및 정보

SQL Server 2005 지원 받기