Metodo EnumLastStatisticsUpdates (String)
Enumera un elenco di informazioni sui più recenti aggiornamenti delle statistiche per il contatore delle statistiche specificato.
Spazio dei nomi Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Sintassi
'Dichiarazione
Public Function EnumLastStatisticsUpdates ( _
statname As String _
) As DataTable
'Utilizzo
Dim instance As Table
Dim statname As String
Dim returnValue As DataTable
returnValue = instance.EnumLastStatisticsUpdates(statname)
public DataTable EnumLastStatisticsUpdates(
string statname
)
public:
DataTable^ EnumLastStatisticsUpdates(
String^ statname
)
member EnumLastStatisticsUpdates :
statname:string -> DataTable
public function EnumLastStatisticsUpdates(
statname : String
) : DataTable
Parametri
- statname
Tipo: System. . :: . .String
Valore String che specifica il contatore delle statistiche al quale limitare i risultati.
Valore restituito
Tipo: System.Data. . :: . .DataTable
Valore dell'oggetto di sistema DataTable che contiene un elenco di informazioni relative ai più recenti aggiornamenti delle statistiche.
Esempi
The following code example demonstrates how to enumerate statistic update information.
C#
Server srv = new Server("(local)");
Database db = srv.Databases["AdventureWorks2008R2"];
Table tb = db.Tables["Address", "Person"];
DataTable dt;
dt = tb.EnumLastStatisticsUpdates("PK_Address_AddressID");
Powershell
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")
$tb = $db.Tables.Item("Address", "Person")
$dt = $tb.EnumLastStatisticsUpdates("PK_Address_AddressID")
Vedere anche