MigrationValidationOptions Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
MigrationValidationOptions() |
Initializes a new instance of the MigrationValidationOptions class. |
MigrationValidationOptions(Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>) |
Initializes a new instance of the MigrationValidationOptions class. |
MigrationValidationOptions()
Initializes a new instance of the MigrationValidationOptions class.
public MigrationValidationOptions ();
Public Sub New ()
Applies to
MigrationValidationOptions(Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)
Initializes a new instance of the MigrationValidationOptions class.
public MigrationValidationOptions (bool? enableSchemaValidation = default, bool? enableDataIntegrityValidation = default, bool? enableQueryAnalysisValidation = default);
new Microsoft.Azure.Management.DataMigration.Models.MigrationValidationOptions : Nullable<bool> * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.DataMigration.Models.MigrationValidationOptions
Public Sub New (Optional enableSchemaValidation As Nullable(Of Boolean) = Nothing, Optional enableDataIntegrityValidation As Nullable(Of Boolean) = Nothing, Optional enableQueryAnalysisValidation As Nullable(Of Boolean) = Nothing)
Parameters
Allows to compare the schema information between source and target.
Allows to perform a checksum based data integrity validation between source and target for the selected database / tables .
Allows to perform a quick and intelligent query analysis by retrieving queries from the source database and executes them in the target. The result will have execution statistics for executions in source and target databases for the extracted queries.