Database.UserDefinedAggregates Property
SQL Server 2008
Represents a collection of UserDefinedAggregate objects. Each UserDefinedAggregate object represents a user-defined aggregate defined on the database.
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, typeof(UserDefinedAggregate))] public UserDefinedAggregateCollection UserDefinedAggregates { get; }
Property Value
Type: Microsoft.SqlServer.Management.Smo.UserDefinedAggregateCollectionA UserDefinedAggregateCollection object that represents all the user-defined aggregates defined on the database.
Specific user-defined aggregates can be referenced by using this collection by specifying the name of the user-defined aggregate. To add a new user-defined aggregate to the collection, call the user-defined aggregate constructor UserDefinedAggregate.
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")
'Display all the triggers in the database.
Dim tr As DatabaseDdlTrigger
For Each tr In db.Triggers
Console.WriteLine(tr.Name)
Next
