Server.FilestreamShareName プロパティ
SQL Server のインスタンスで FILESTREAM データが格納される Windows 共有の名前を取得します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property FilestreamShareName As String
Get
'使用
Dim instance As Server
Dim value As String
value = instance.FilestreamShareName
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public string FilestreamShareName { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property String^ FilestreamShareName {
String^ get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member FilestreamShareName : string
function get FilestreamShareName () : String
プロパティ値
型: System.String
SQL Server のインスタンスで FILESTREAM データが格納される Windows 共有の名前を示す String オブジェクトです。
説明
ファイル ストリーミングは、Transact-SQL および Win32 ファイル アクセスに対して有効にできます。 詳細については、「FILESTREAM の概要」を参照してください。
使用例
C#
Server srv = new Server("(local)");
Console.WriteLine("The share name that is storing filestream data is: " + srv.FileStreamShareName.ToString());
PowerShell
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
Write-Host "The share name that is storing filestream data is:" $srv.FileStreamShareName
関連項目
参照
Microsoft.SqlServer.Management.Smo 名前空間