Database.XmlSchemaCollections 속성

Gets a collection of XmlSchemaCollection objects. Each XmlSchemaCollection object represents an XML schema defined on the database.

네임스페이스:  Microsoft.SqlServer.Management.Smo
어셈블리:  Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)

구문

‘선언
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,  _
    GetType(XmlSchemaCollection))> _
Public ReadOnly Property XmlSchemaCollections As XmlSchemaCollectionCollection 
    Get
‘사용 방법
Dim instance As Database 
Dim value As XmlSchemaCollectionCollection 

value = instance.XmlSchemaCollections
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(XmlSchemaCollection))]
public XmlSchemaCollectionCollection XmlSchemaCollections { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny, 
    typeof(XmlSchemaCollection))]
public:
property XmlSchemaCollectionCollection^ XmlSchemaCollections {
    XmlSchemaCollectionCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, 
    typeof(XmlSchemaCollection))>]
member XmlSchemaCollections : XmlSchemaCollectionCollection
function get XmlSchemaCollections () : XmlSchemaCollectionCollection

속성 값

유형: Microsoft.SqlServer.Management.Smo.XmlSchemaCollectionCollection
A XmlSchemaCollectionCollection object that represents all the XML schemas defined on the database.

주의

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

'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 XML schema collections in the database.
Dim xsc As XmlSchemaCollection
For Each xsc In db.XmlSchemaCollections
   Console.WriteLine(xsc.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 ($xsc in $db.XmlSchemaCollections)
{
   Write-Host $xsc.Name
}

참고 항목

참조

Database 클래스

Microsoft.SqlServer.Management.Smo 네임스페이스

관련 자료

데이터베이스 개체 작업

XML 스키마 사용

데이터베이스 생성, 변경 및 제거

CREATE DATABASE(Transact-SQL)