SqlAssessmentExtensions.GetAssessmentResultsList Metodo

Definizione

Overload

Nome Descrizione
GetAssessmentResultsList(SqlSmoObject, IEnumerable<ICheck>)

Esegue in modo asincrono la valutazione per dati smoObject e fornisce una List<T> descrizione dei problemi individuati. Questo metodo esegue solo i controlli forniti da checks.

GetAssessmentResultsList(AvailabilityGroup, IEnumerable<ICheck>)

Esegue in modo sincrono la valutazione per dati availabilityGroup e fornisce una IEnumerable<T> descrizione dei problemi individuati. Questo metodo esegue solo i controlli forniti da checks.

GetAssessmentResultsList(AvailabilityGroup, String[])

Esegue in modo asincrono la valutazione per dati availabilityGroup e fornisce una List<T> descrizione dei problemi individuati.

GetAssessmentResultsList(Database, IEnumerable<ICheck>)

Esegue in modo sincrono la valutazione per dati database e fornisce una IEnumerable<T> descrizione dei problemi individuati. Questo metodo esegue solo i controlli forniti da checks.

GetAssessmentResultsList(Database, String[])

Esegue in modo asincrono la valutazione per dati database e fornisce una List<T> descrizione dei problemi individuati.

GetAssessmentResultsList(FileGroup, IEnumerable<ICheck>)

Esegue in modo sincrono la valutazione per dati fileGroup e fornisce una IEnumerable<T> descrizione dei problemi individuati. Questo metodo esegue solo i controlli forniti da checks.

GetAssessmentResultsList(FileGroup, String[])

Esegue in modo asincrono la valutazione per dati fileGroup e fornisce una List<T> descrizione dei problemi individuati.

GetAssessmentResultsList(Server, IEnumerable<ICheck>)

Esegue in modo sincrono la valutazione per dati server e fornisce una IEnumerable<T> descrizione dei problemi individuati. Questo metodo esegue solo i controlli forniti da checks.

GetAssessmentResultsList(Server, String[])

Esegue in modo asincrono la valutazione per dati server e fornisce una List<T> descrizione dei problemi individuati.

GetAssessmentResultsList(SqlSmoObject, String[])

Esegue in modo asincrono la valutazione per dati smoObject e fornisce una List<T> descrizione dei problemi individuati.

GetAssessmentResultsList(SqlSmoObject, IEnumerable<ICheck>)

Esegue in modo asincrono la valutazione per dati smoObject e fornisce una List<T> descrizione dei problemi individuati. Questo metodo esegue solo i controlli forniti da checks.

public static System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>> GetAssessmentResultsList(this Microsoft.SqlServer.Management.Smo.SqlSmoObject smoObject, System.Collections.Generic.IEnumerable<Microsoft.SqlServer.Management.Assessment.Checks.ICheck> checks);
static member GetAssessmentResultsList : Microsoft.SqlServer.Management.Smo.SqlSmoObject * seq<Microsoft.SqlServer.Management.Assessment.Checks.ICheck> -> System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>>
<Extension()>
Public Function GetAssessmentResultsList (smoObject As SqlSmoObject, checks As IEnumerable(Of ICheck)) As Task(Of List(Of IAssessmentResult))

Parametri

smoObject
SqlSmoObject

Destinazione SqlSmoObject.

checks
IEnumerable<ICheck>

Facoltativo IEnumerable<T> per eseguire solo i controlli selezionati.

Valori restituiti

Restituisce un oggetto List<T> per la destinazione SqlSmoObject. Restituisce un valore vuoto List<T> se non sono stati rilevati problemi.

Si applica a

GetAssessmentResultsList(AvailabilityGroup, IEnumerable<ICheck>)

Esegue in modo sincrono la valutazione per dati availabilityGroup e fornisce una IEnumerable<T> descrizione dei problemi individuati. Questo metodo esegue solo i controlli forniti da checks.

public static System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>> GetAssessmentResultsList(this Microsoft.SqlServer.Management.Smo.AvailabilityGroup availabilityGroup, System.Collections.Generic.IEnumerable<Microsoft.SqlServer.Management.Assessment.Checks.ICheck> checks);
static member GetAssessmentResultsList : Microsoft.SqlServer.Management.Smo.AvailabilityGroup * seq<Microsoft.SqlServer.Management.Assessment.Checks.ICheck> -> System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>>
<Extension()>
Public Function GetAssessmentResultsList (availabilityGroup As AvailabilityGroup, checks As IEnumerable(Of ICheck)) As Task(Of List(Of IAssessmentResult))

Parametri

availabilityGroup
AvailabilityGroup

Destinazione AvailabilityGroup.

checks
IEnumerable<ICheck>

Facoltativo IEnumerable<T> per eseguire solo i controlli selezionati.

Valori restituiti

Restituisce un oggetto IEnumerable<T> per la destinazione SqlSmoObject. Restituisce un valore vuoto IEnumerable<T> se non sono stati rilevati problemi.

Si applica a

GetAssessmentResultsList(AvailabilityGroup, String[])

Esegue in modo asincrono la valutazione per dati availabilityGroup e fornisce una List<T> descrizione dei problemi individuati.

public static System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>> GetAssessmentResultsList(this Microsoft.SqlServer.Management.Smo.AvailabilityGroup availabilityGroup, params string[] checkIdsOrTags);
static member GetAssessmentResultsList : Microsoft.SqlServer.Management.Smo.AvailabilityGroup * string[] -> System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>>
<Extension()>
Public Function GetAssessmentResultsList (availabilityGroup As AvailabilityGroup, ParamArray checkIdsOrTags As String()) As Task(Of List(Of IAssessmentResult))

Parametri

availabilityGroup
AvailabilityGroup

Destinazione AvailabilityGroup.

checkIdsOrTags
String[]

Matrice facoltativa di String id check o tag per eseguire solo i controlli selezionati.

Valori restituiti

Restituisce un oggetto List<T> per la destinazione SqlSmoObject. Restituisce un valore vuoto List<T> se non sono stati rilevati problemi.

Si applica a

GetAssessmentResultsList(Database, IEnumerable<ICheck>)

Esegue in modo sincrono la valutazione per dati database e fornisce una IEnumerable<T> descrizione dei problemi individuati. Questo metodo esegue solo i controlli forniti da checks.

public static System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>> GetAssessmentResultsList(this Microsoft.SqlServer.Management.Smo.Database database, System.Collections.Generic.IEnumerable<Microsoft.SqlServer.Management.Assessment.Checks.ICheck> checks);
static member GetAssessmentResultsList : Microsoft.SqlServer.Management.Smo.Database * seq<Microsoft.SqlServer.Management.Assessment.Checks.ICheck> -> System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>>
<Extension()>
Public Function GetAssessmentResultsList (database As Database, checks As IEnumerable(Of ICheck)) As Task(Of List(Of IAssessmentResult))

Parametri

database
Database

Destinazione Database.

checks
IEnumerable<ICheck>

Facoltativo IEnumerable<T> per eseguire solo i controlli selezionati.

Valori restituiti

Restituisce un oggetto IEnumerable<T> per la destinazione SqlSmoObject. Restituisce un valore vuoto IEnumerable<T> se non sono stati rilevati problemi.

Si applica a

GetAssessmentResultsList(Database, String[])

Esegue in modo asincrono la valutazione per dati database e fornisce una List<T> descrizione dei problemi individuati.

public static System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>> GetAssessmentResultsList(this Microsoft.SqlServer.Management.Smo.Database database, params string[] checkIdsOrTags);
static member GetAssessmentResultsList : Microsoft.SqlServer.Management.Smo.Database * string[] -> System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>>
<Extension()>
Public Function GetAssessmentResultsList (database As Database, ParamArray checkIdsOrTags As String()) As Task(Of List(Of IAssessmentResult))

Parametri

database
Database

Destinazione Database.

checkIdsOrTags
String[]

Matrice facoltativa di String id check o tag per eseguire solo i controlli selezionati.

Valori restituiti

Restituisce un oggetto List<T> per la destinazione SqlSmoObject. Restituisce un valore vuoto List<T> se non sono stati rilevati problemi.

Si applica a

GetAssessmentResultsList(FileGroup, IEnumerable<ICheck>)

Esegue in modo sincrono la valutazione per dati fileGroup e fornisce una IEnumerable<T> descrizione dei problemi individuati. Questo metodo esegue solo i controlli forniti da checks.

public static System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>> GetAssessmentResultsList(this Microsoft.SqlServer.Management.Smo.FileGroup fileGroup, System.Collections.Generic.IEnumerable<Microsoft.SqlServer.Management.Assessment.Checks.ICheck> checks);
static member GetAssessmentResultsList : Microsoft.SqlServer.Management.Smo.FileGroup * seq<Microsoft.SqlServer.Management.Assessment.Checks.ICheck> -> System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>>
<Extension()>
Public Function GetAssessmentResultsList (fileGroup As FileGroup, checks As IEnumerable(Of ICheck)) As Task(Of List(Of IAssessmentResult))

Parametri

fileGroup
FileGroup

Destinazione FileGroup.

checks
IEnumerable<ICheck>

Facoltativo IEnumerable<T> per eseguire solo i controlli selezionati.

Valori restituiti

Restituisce un oggetto IEnumerable<T> per la destinazione SqlSmoObject. Restituisce un valore vuoto IEnumerable<T> se non sono stati rilevati problemi.

Si applica a

GetAssessmentResultsList(FileGroup, String[])

Esegue in modo asincrono la valutazione per dati fileGroup e fornisce una List<T> descrizione dei problemi individuati.

public static System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>> GetAssessmentResultsList(this Microsoft.SqlServer.Management.Smo.FileGroup fileGroup, params string[] checkIdsOrTags);
static member GetAssessmentResultsList : Microsoft.SqlServer.Management.Smo.FileGroup * string[] -> System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>>
<Extension()>
Public Function GetAssessmentResultsList (fileGroup As FileGroup, ParamArray checkIdsOrTags As String()) As Task(Of List(Of IAssessmentResult))

Parametri

fileGroup
FileGroup

Destinazione FileGroup.

checkIdsOrTags
String[]

Matrice facoltativa di String id check o tag per eseguire solo i controlli selezionati.

Valori restituiti

Restituisce un oggetto List<T> per la destinazione SqlSmoObject. Restituisce un valore vuoto List<T> se non sono stati rilevati problemi.

Si applica a

GetAssessmentResultsList(Server, IEnumerable<ICheck>)

Esegue in modo sincrono la valutazione per dati server e fornisce una IEnumerable<T> descrizione dei problemi individuati. Questo metodo esegue solo i controlli forniti da checks.

public static System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>> GetAssessmentResultsList(this Microsoft.SqlServer.Management.Smo.Server server, System.Collections.Generic.IEnumerable<Microsoft.SqlServer.Management.Assessment.Checks.ICheck> checks);
static member GetAssessmentResultsList : Microsoft.SqlServer.Management.Smo.Server * seq<Microsoft.SqlServer.Management.Assessment.Checks.ICheck> -> System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>>
<Extension()>
Public Function GetAssessmentResultsList (server As Server, checks As IEnumerable(Of ICheck)) As Task(Of List(Of IAssessmentResult))

Parametri

server
Server

Destinazione Server.

checks
IEnumerable<ICheck>

Facoltativo IEnumerable<T> per eseguire solo i controlli selezionati.

Valori restituiti

Restituisce un oggetto IEnumerable<T> per la destinazione SqlSmoObject. Restituisce un valore vuoto IEnumerable<T> se non sono stati rilevati problemi.

Si applica a

GetAssessmentResultsList(Server, String[])

Esegue in modo asincrono la valutazione per dati server e fornisce una List<T> descrizione dei problemi individuati.

public static System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>> GetAssessmentResultsList(this Microsoft.SqlServer.Management.Smo.Server server, params string[] checkIdsOrTags);
static member GetAssessmentResultsList : Microsoft.SqlServer.Management.Smo.Server * string[] -> System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>>
<Extension()>
Public Function GetAssessmentResultsList (server As Server, ParamArray checkIdsOrTags As String()) As Task(Of List(Of IAssessmentResult))

Parametri

server
Server

Destinazione Server.

checkIdsOrTags
String[]

Matrice facoltativa di String id check o tag per eseguire solo i controlli selezionati.

Valori restituiti

Restituisce un oggetto List<T> per la destinazione SqlSmoObject. Restituisce un valore vuoto List<T> se non sono stati rilevati problemi.

Si applica a

GetAssessmentResultsList(SqlSmoObject, String[])

Esegue in modo asincrono la valutazione per dati smoObject e fornisce una List<T> descrizione dei problemi individuati.

public static System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>> GetAssessmentResultsList(this Microsoft.SqlServer.Management.Smo.SqlSmoObject smoObject, params string[] checkIdsOrTags);
static member GetAssessmentResultsList : Microsoft.SqlServer.Management.Smo.SqlSmoObject * string[] -> System.Threading.Tasks.Task<System.Collections.Generic.List<Microsoft.SqlServer.Management.Assessment.IAssessmentResult>>
<Extension()>
Public Function GetAssessmentResultsList (smoObject As SqlSmoObject, ParamArray checkIdsOrTags As String()) As Task(Of List(Of IAssessmentResult))

Parametri

smoObject
SqlSmoObject

Destinazione SqlSmoObject.

checkIdsOrTags
String[]

Matrice facoltativa di String id check o tag per eseguire solo i controlli selezionati.

Valori restituiti

Restituisce un oggetto List<T> per la destinazione SqlSmoObject. Restituisce un valore vuoto List<T> se non sono stati rilevati problemi.

Si applica a