<SfcElementTypeAttribute("Setting")> _ Public NotInheritable Class Settings Inherits SqlSmoObject Implements IAlterable, IScriptable
[SfcElementTypeAttribute("Setting")] public sealed class Settings : SqlSmoObject, IAlterable, IScriptable
[SfcElementTypeAttribute(L"Setting")] public ref class Settings sealed : public SqlSmoObject, IAlterable, IScriptable
/** @attribute SfcElementTypeAttribute("Setting") */ public final class Settings extends SqlSmoObject implements IAlterable, IScriptable
SfcElementTypeAttribute("Setting") public final class Settings extends SqlSmoObject implements IAlterable, IScriptable
この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新しい開発作業では、この機能の使用を避け、現在この機能を使用しているアプリケーションは修正するようにしてください。
Settings オブジェクトのプロパティを取得するには、固定サーバー ロール public のメンバでもかまいません。
Settings オブジェクトのプロパティを設定するには、固定サーバー ロール sysadmin のメンバである必要があります。
'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()