Share via


Schemas-Eigenschaft

Stellt eine Auflistung von Schema-Objekten dar. Jedes Schema-Objekt stellt ein für die Datenbank definiertes Schema dar.

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

Syntax

'Declaration
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,  _
    GetType(Schema), SfcObjectFlags.Design)> _
Public ReadOnly Property Schemas As SchemaCollection
    Get
'Usage
Dim instance As Database
Dim value As SchemaCollection

value = instance.Schemas
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(Schema), SfcObjectFlags.Design)]
public SchemaCollection Schemas { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny, 
    typeof(Schema), SfcObjectFlags::Design)]
public:
property SchemaCollection^ Schemas {
    SchemaCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(Schema), SfcObjectFlags.Design)>]
member Schemas : SchemaCollection
function get Schemas () : SchemaCollection

Eigenschaftswert

Typ: Microsoft.SqlServer.Management.Smo. . :: . .SchemaCollection
Ein SchemaCollection-Objekt, das alle für die Datenbank definierten Schemas darstellt.

Hinweise

Specific schemas can be referenced by using this collection by specifying the name of the schema. To add a new schema to the collection, call the schema constructor Schema.

Beispiele

'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 schemas in the database.
Dim sc As Schema
For Each sc In db.Schemas
   Console.WriteLine(sc.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 ($sc in $db.Schemas)
{
   Write-Host $sc.Name
}