クリックして評価とフィードバックをお寄せください
MSDN
MSDN ライブラリ
SQL Server
SQL Server 2008
データベース エンジン
テクニカル リファレンス
Microsoft.SqlServer.Management.Smo
Settings Class

  低帯域幅での表示をオンにする
コミュニティ コンテンツ
このセクションの内容
その他のバージョンについては、以下の情報を参照してください。
Settings Class

Settings オブジェクトは、SQL Server のインスタンスの構成可能な設定のグループを表します。

名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)
Visual Basic (Declaration)
<SfcElementTypeAttribute("Setting")> _
Public NotInheritable Class Settings
    Inherits SqlSmoObject
    Implements IAlterable, IScriptable
C#
[SfcElementTypeAttribute("Setting")] 
public sealed class Settings : SqlSmoObject, IAlterable, IScriptable
C++
[SfcElementTypeAttribute(L"Setting")] 
public ref class Settings sealed : public SqlSmoObject, IAlterable, IScriptable
J#
/** @attribute SfcElementTypeAttribute("Setting") */ 
public final class Settings extends SqlSmoObject implements IAlterable, IScriptable
JScript
SfcElementTypeAttribute("Setting") 
public final class Settings extends SqlSmoObject implements IAlterable, IScriptable

この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新しい開発作業では、この機能の使用を避け、現在この機能を使用しているアプリケーションは修正するようにしてください。

Settings オブジェクトのプロパティを取得するには、固定サーバー ロール public のメンバでもかまいません。

Settings オブジェクトのプロパティを設定するには、固定サーバー ロール sysadmin のメンバである必要があります。


System.Object
   Microsoft.SqlServer.Management.Smo.SmoObjectBase
     Microsoft.SqlServer.Management.Smo.SqlSmoObject
      Microsoft.SqlServer.Management.Smo.Settings
Visual Basic
'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 ではShared ) メンバはすべて、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

開発プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

対象プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
コミュニティ コンテンツ   コミュニティ コンテンツとは
新しいコンテンツの追加 RSS  注釈
Processing
© 2009 Microsoft Corporation. All rights reserved. 使用条件  |  商標  |  プライバシー
Page view tracker