Propriété ScriptingOptions.ConvertUserDefinedDataTypesToBaseType

Gets or sets the Boolean property value that specifies whether user-defined data types are converted to the most appropriate SQL Server base data types in the generated script.

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Syntaxe

public bool ConvertUserDefinedDataTypesToBaseType { get; set; }

Valeur de propriété

Type : System.Boolean
A Boolean value that specifies whether user-defined data types are converted to the most appropriate SQL Server base data types in the generated script.If True, user-defined data types are converted to SQL Server base data types. Otherwise, False (default).

Exemples

The following code example specifies that user-defined data types will be converted to base data types in the script.

Visual Basic

Dim scOps As New ScriptingOptions()
scOps.ConvertUserDefinedDataTypesToBaseType = true

PowerShell

$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$scOps.ConvertUserDefinedDataTypesToBaseType = $TRUE

Voir aussi

Référence

ScriptingOptions Classe

Espace de noms Microsoft.SqlServer.Management.Smo

Autres ressources

Création de scripts