共用方式為


Database.Schemas 屬性

Gets a collection of Schema objects. Each Schema object represents a schema defined on the database.

命名空間:  Microsoft.SqlServer.Management.Smo
組件:  Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)

語法

'宣告
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,  _
    GetType(Schema), SfcObjectFlags.Design)> _
Public ReadOnly Property Schemas As SchemaCollection 
    Get
'用途
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

屬性值

型別:Microsoft.SqlServer.Management.Smo.SchemaCollection
A SchemaCollection object that represents all the schemas defined on the database.

備註

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.

範例

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

Foreach ($sc in $db.Schemas)
{
   Write-Host $sc.Name
}

請參閱

參考

Database 類別

Microsoft.SqlServer.Management.Smo 命名空間

其他資源

使用資料庫物件

建立、改變和移除規則

建立、改變和移除資料庫

CREATE DATABASE (Transact-SQL)