Método Validate
Validates the package with the specified connection and determines whether the specified server is valid.
Namespace: Microsoft.SqlServer.Management.Dac
Assembly: Microsoft.SqlServer.Management.Dac (em Microsoft.SqlServer.Management.Dac.dll)
Sintaxe
'Declaração
Public Shared Function Validate ( _
server As Server, _
databaseName As String _
) As ExtractValidationException
'Uso
Dim server As Server
Dim databaseName As String
Dim returnValue As ExtractValidationException
returnValue = DatabaseExtractValidator.Validate(server, _
databaseName)
public static ExtractValidationException Validate(
Server server,
string databaseName
)
public:
static ExtractValidationException^ Validate(
Server^ server,
String^ databaseName
)
static member Validate :
server:Server *
databaseName:string -> ExtractValidationException
public static function Validate(
server : Server,
databaseName : String
) : ExtractValidationException
Parâmetros
- server
Tipo: Microsoft.SqlServer.Management.Smo. . :: . .Server
A Server object specifying the server to validate.
- databaseName
Tipo: System. . :: . .String
A String value specifying the name of the database to validate.
Valor de retorno
Tipo: Microsoft.SqlServer.Management.Dac. . :: . .ExtractValidationException
A ExtractValidationException that specifies which problems were detected. Returns nullNothingnullptrunituma referência nula (Nothing no Visual Basic) if no problems were detected.
Comentários
The Validate method checks to ensure that:
The server is not in Design Mode.
The database exists, and that information can be extracted from it.
The user has sufficient privileges to extract information from the database.
Consulte também