次の方法で共有


Settings Class

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

名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)

構文

'宣言
Public NotInheritable Class Settings
    Inherits SqlSmoObject
    Implements IAlterable, IScriptable
public sealed class Settings : SqlSmoObject, IAlterable, IScriptable
public ref class Settings sealed : public SqlSmoObject, IAlterable, IScriptable
public final class Settings extends SqlSmoObject implements IAlterable, IScriptable
public final class Settings extends SqlSmoObject implements IAlterable, IScriptable

解説

更新されたテキスト :

更新されたテキスト :

この名前空間、クラス、またはメンバは、Microsoft .NET Framework Version 2.0 でのみサポートされています。

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

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

継承階層

System.Object
   Microsoft.SqlServer.Management.Smo.SmoObjectBase
     Microsoft.SqlServer.Management.Smo.SqlSmoObject
      Microsoft.SqlServer.Management.Smo.Settings

使用例

'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 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

Settings Members
Microsoft.SqlServer.Management.Smo Namespace

その他の技術情報

Visual Basic .NET で SQL Server 設定を変更する方法
SMO での SQL Server の構成

変更履歴

リリース

履歴

新しい内容 :
  • DefaultLog プロパティと DefaultFile プロパティの「解説」セクションに記述を追加しました。

新しい内容 :
  • 「例」セクションにコード例を追加しました。