Server.Information Property
Microsoft SQL Server のインスタンスに関する情報を取得します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)
構文
'宣言
Public ReadOnly Property Information As Information
public Information Information { get; }
public:
property Information^ Information {
Information^ get ();
}
/** @property */
public Information get_Information ()
public function get Information () : Information
プロパティ値
SQL Server のインスタンスに関する情報を示す Information オブジェクトです。
解説
更新されたテキスト :
Information プロパティは、インストールされている SQL Server に関する読み取り専用の情報を保存する Information オブジェクトを参照しています。このオブジェクトには、オペレーティング システム、製品のバージョン、物理的なインストール場所に関する情報が含まれています。
この名前空間、クラス、またはメンバは、Microsoft .NET Framework Version 2.0 でのみサポートされています。
使用例
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Display information about the instance of SQL Server in Information and Settings.
Console.WriteLine("OS Version = " & srv.Information.OSVersion)
Console.WriteLine("State = " & srv.Settings.State.ToString)
'Display information specific to the current user in UserOptions.
Console.WriteLine("Quoted Identifier support = " & srv.UserOptions.QuotedIdentifier)
'Modify server settings in Settings.
srv.Settings.LoginMode = ServerLoginMode.Integrated
'Modify settings specific to the current connection in UserOptions.
srv.UserOptions.AbortOnArithmeticErrors = True
'Run the Alter method to make the changes on the instance of SQL Server.
srv.Alter()
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
Server Class
Server Members
Microsoft.SqlServer.Management.Smo Namespace
その他の技術情報
Visual Basic .NET で SMO オブジェクトをコピーする方法
Configuring SQL Server (SMO)
サーバーの管理
変更履歴
リリース |
履歴 |
新しい内容 :
|