Compartir a través de


ScriptingOptions.NoFileStreamColumn Propiedad

Gets or sets an object that specifies whether to include the FILESTREAM_ON clause when you create VarBinaryMax columns in the generated script.

Espacio de nombres:  Microsoft.SqlServer.Management.Smo
Ensamblado:  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Sintaxis

'Declaración
Public Property NoFileStreamColumn As Boolean 
    Get 
    Set
'Uso
Dim instance As ScriptingOptions 
Dim value As Boolean 

value = instance.NoFileStreamColumn

instance.NoFileStreamColumn = value
public bool NoFileStreamColumn { get; set; }
public:
property bool NoFileStreamColumn {
    bool get ();
    void set (bool value);
}
member NoFileStreamColumn : bool with get, set
function get NoFileStreamColumn () : boolean 
function set NoFileStreamColumn (value : boolean)

Valor de la propiedad

Tipo: System.Boolean
Boolean object represents NoFileStreamColumn value in the scripting options.If True the FILESTREAM_ON clause is not included when creating VarBinaryMax columns. Otherwise, False (default).

Ejemplos

The following code example specifies that the FILESTREAM_On clause will not be scripted.

Visual Basic

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

PowerShell

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

Vea también

Referencia

ScriptingOptions Clase

Espacio de nombres Microsoft.SqlServer.Management.Smo

Otros recursos

Scripting