Właściwość Database.Assemblies
Reprezentuje kolekcja SqlAssembly obiektów.Każdy SqlAssembly obiekt reprezentuje wirtualny plik dziennika zdefiniowanych w bazie danych.
Przestrzeń nazw: Microsoft.SqlServer.Management.Smo
Zestaw: Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)
Składnia
'Deklaracja
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, _
GetType(SqlAssembly))> _
Public ReadOnly Property Assemblies As SqlAssemblyCollection
Get
'Użycie
Dim instance As Database
Dim value As SqlAssemblyCollection
value = instance.Assemblies
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(SqlAssembly))]
public SqlAssemblyCollection Assemblies { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny,
typeof(SqlAssembly))]
public:
property SqlAssemblyCollection^ Assemblies {
SqlAssemblyCollection^ get ();
}
[<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny,
typeof(SqlAssembly))>]
member Assemblies : SqlAssemblyCollection
function get Assemblies () : SqlAssemblyCollection
Wartość właściwości
Typ: Microsoft.SqlServer.Management.Smo.SqlAssemblyCollection
SqlAssemblyCollection Obiekt, który reprezentuje wszystkie zestawy zdefiniowane w bazie danych.
Uwagi
wirtualny plik dziennika Jest jednostką wdrażania w Microsoft .Środowisko netto.SQL Serverwymaga zestawów zarejestrowane w bazie danych, zanim mogą być używane wewnątrz procedur przechowywanych, funkcji zdefiniowanych przez użytkownika, wyzwalaczy i typy danych zdefiniowane przez użytkownika.SMO, zespoły są zarejestrowane w bazie danych podczas jest reprezentowana przez SqlAssembly obiektu.
Określone zestawy można się odwoływać za pomocą tej kolekcja, określając nazwę wirtualny plik dziennika.Aby dodać nowy wirtualny plik dziennika do kolekcja, wywołanie konstruktora wirtualny plik dziennika.
Przykłady
VB
'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 assemblies on the database.
Dim ar As SqlAssembly
For Each ar In db.Assemblies
Console.WriteLine(ar.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 ($ar in $db.Assemblies)
{
Write-Host $ar.Name
}