Condividi tramite


Proprietà ScriptingOptions.FileName

Gets or sets the name of the file to which the generated script is output.

Spazio dei nomi  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Sintassi

'Dichiarazione
Public Property FileName As String 
    Get 
    Set
'Utilizzo
Dim instance As ScriptingOptions 
Dim value As String 

value = instance.FileName

instance.FileName = value
public string FileName { get; set; }
public:
property String^ FileName {
    String^ get ();
    void set (String^ value);
}
member FileName : string with get, set
function get FileName () : String 
function set FileName (value : String)

Valore proprietà

Tipo: System.String
A String value that specifies the name of the file to which the generated script is output.

Esempi

The following code example sets the name of the scripts output file.

Visual Basic

Dim scOps As New ScriptingOptions()
scOps.FileName = "C:\Program Files\Microsoft SQL Server\100\DTS\ForEachEnumerators\SampleFileName.sql"

PowerShell

$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$scOps.FileName = "C:\Program Files\Microsoft SQL Server\100\DTS\ForEachEnumerators\SampleFileName.sql"

Vedere anche

Riferimento

ScriptingOptions Classe

Spazio dei nomi Microsoft.SqlServer.Management.Smo

Altre risorse

Generazione di script