Freigeben über


Database.DatabaseOptions-Eigenschaft

Gets the DatabaseOptions object that contains configuration options for the database.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
<SfcObjectAttribute(SfcObjectRelationship.ChildObject, SfcObjectCardinality.One)> _
Public ReadOnly Property DatabaseOptions As DatabaseOptions 
    Get
'Usage
Dim instance As Database 
Dim value As DatabaseOptions 

value = instance.DatabaseOptions
[SfcObjectAttribute(SfcObjectRelationship.ChildObject, SfcObjectCardinality.One)]
public DatabaseOptions DatabaseOptions { get; }
[SfcObjectAttribute(SfcObjectRelationship::ChildObject, SfcObjectCardinality::One)]
public:
property DatabaseOptions^ DatabaseOptions {
    DatabaseOptions^ get ();
}
[<SfcObjectAttribute(SfcObjectRelationship.ChildObject, SfcObjectCardinality.One)>]
member DatabaseOptions : DatabaseOptions
function get DatabaseOptions () : DatabaseOptions

Eigenschaftswert

Typ: Microsoft.SqlServer.Management.Smo.DatabaseOptions
A DatabaseOptions object value that contains database configuration options.

Hinweise

The DatabaseOptions property points to a DatabaseOptions object. The DatabaseOptions object contains a set of Boolean properties that control the database options, such as the ANSI, statistics, and mirroring settings.

Beispiele

VB

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks2012 database.
Dim db As Database
db = srv.Databases("AdventureWorks2012")

'Force parameterization on the database by setting database options.
db.DatabaseOptions.IsParameterizationForced = True

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2012")

$db.DatabaseOptions.IsParameterizationForced = $TRUE

Siehe auch

Verweis

Database Klasse

Microsoft.SqlServer.Management.Smo-Namespace

Andere Ressourcen

Arbeiten mit Datenbankobjekten

Festlegen von Datenbankoptionen

Erstellen, Ändern und Löschen von Datenbanken

CREATE DATABASE (Transact-SQL)