Database.UserDefinedFunctions Property
SQL Server 2012
Gets a collection of UserDefinedFunction objects. Each UserDefinedFunction object represents a user-defined function on the database.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, typeof(UserDefinedFunction), SfcObjectFlags.Design)] public UserDefinedFunctionCollection UserDefinedFunctions { get; }
Property Value
Type: Microsoft.SqlServer.Management.Smo.UserDefinedFunctionCollectionA UserDefinedFunctionCollection object that represents all the user-defined functions on the database.
Specific user-defined functions can be referenced by using this collection by specifying the name of the user-defined function. To add a new user-defined function to the collection, call the user-defined function constructor UserDefinedFunction.
VB
'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 user defined functions in the database.
Dim udf As UserDefinedFunction
For Each udf In db.UserDefinedFunctions
Console.WriteLine(udf.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 ($udf in $db.UserDefinedFunctions)
{
Write-Host $udf.Name
}