Propriété NoFileStream

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

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

Syntaxe

'Déclaration
Public Property NoFileStream As Boolean
    Get
    Set
'Utilisation
Dim instance As ScriptingOptions
Dim value As Boolean

value = instance.NoFileStream

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

Valeur de propriété

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

Exemples

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

Visual Basic

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

PowerShell

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