Partilhar via


Propriedade do RDL Database.Defaults

Gets a collection of Default objects. Each Default object represents a default defined on the database.

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

Sintaxe

'Declaração
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,  _
    GetType(Default))> _
Public ReadOnly Property Defaults As DefaultCollection 
    Get
'Uso
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

Valor da propriedade

Tipo: Microsoft.SqlServer.Management.Smo.DefaultCollection
A DefaultCollection object that represents all the defaults defined on the database.

Comentários

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.

Exemplos

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

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

Foreach ($lf in $db.LogFiles)
{
   Write-Host $lf.Name
}

Consulte também

Referência

Database Classe

Namespace Microsoft.SqlServer.Management.Smo

Outros recursos

Trabalhando com objetos de banco de dados

Criando, alterando e removendo padrões

Criando, alterando e removendo bancos de dados

CREATE DATABASE (Transact-SQL)