Defaults 属性
命名空间: Microsoft.SqlServer.Management.Smo
程序集: Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)
语法
声明
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, _
GetType(Default))> _
Public ReadOnly Property Defaults As DefaultCollection
Get
用法
Dim instance As Database
Dim value As DefaultCollection
value = instance.Defaults
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(Default))]
public DefaultCollection Defaults { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny,
typeof(Default))]
public:
property DefaultCollection^ Defaults {
DefaultCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(Default))>]
member Defaults : DefaultCollection
function get Defaults () : DefaultCollection
属性值
类型:Microsoft.SqlServer.Management.Smo. . :: . .DefaultCollection
一个 DefaultCollection 对象,该对象表示对数据库定义的所有默认值。
注释
Specific defaults can be referenced by using this collection by specifying the name of the default. To add a new default to the collection, call the default constructor Default.
示例
'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")
'Display all the log files in the database.
Dim lf As LogFile
For Each lf In db.LogFiles
Console.WriteLine(lf.Name)
Next
PowerShell
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")
Foreach ($lf in $db.LogFiles)
{
Write-Host $lf.Name
}