Udostępnij za pośrednictwem


Właściwość Database.DatabaseOptions

Pobiera DatabaseOptions obiekt, który zawiera opcje konfiguracja dla bazy danych.

Przestrzeń nazw:  Microsoft.SqlServer.Management.Smo
Zestaw:  Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)

Składnia

'Deklaracja
<SfcObjectAttribute(SfcObjectRelationship.ChildObject, SfcObjectCardinality.One)> _
Public ReadOnly Property DatabaseOptions As DatabaseOptions
    Get
'Użycie
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

Wartość właściwości

Typ: Microsoft.SqlServer.Management.Smo.DatabaseOptions
A DatabaseOptions wartość obiektu, który zawiera opcje konfiguracja bazy danych.

Uwagi

DatabaseOptions Właściwość wskazuje na DatabaseOptions obiektu.DatabaseOptionsObiekt zawiera zestaw właściwości wartość logiczna, sterujące opcje bazy danych, takich jak ANSI, statystyk i ustawienia dublowanie.

Przykłady

VB

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

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

'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("AdventureWorks2008R2")

$db.DatabaseOptions.IsParameterizationForced = $TRUE