EnumLastStatisticsUpdates Method
Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 않도록 하고, 현재 이 기능을 사용하는 응용 프로그램은 수정하십시오.
The EnumLastStatisticsUpdates method returns a QueryResults object that enumerates the query optimizing statistics maintained on a table.
구문
object
.EnumLastStatisticsUpdates( [ IndexName ] )
as QueryResults
Parts
object
Expression that evaluates to an object in the Applies To list.IndexName
Optional. String that names an existing index and that restricts output to the index named.
Prototype (C/C++)
HRESULT EnumLastStatisticsUpdates(
LPSQLDMOQUERYRESULTS* ppResults,
SQLDMO_LPCSTR IndexName = NULL);
Returns
A QueryResults object that contains one result set defined by these columns.
Column |
Data type |
Description |
---|---|---|
last update |
smalldatetime |
Date and time of most recent update. When NULL, the distribution statistics have not been updated after object creation. |
name |
nvarchar(129) |
Index name or statistics definition name. |
주의
Data distribution statistics are maintained for indexes defined on a table and as directed by the user. By default, the EnumLastStatisticsUpdates method returns a result set that contains rows referencing both indexes and system and user-defined data distribution statistics.