Database.Synonyms Property
SQL Server 2012
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, typeof(Synonym), SfcObjectFlags.Design)] public SynonymCollection Synonyms { get; }
Property Value
Type: Microsoft.SqlServer.Management.Smo.SynonymCollectionA SynonymCollection object that represents all the synonyms defined on the database.
Specific synonyms can be referenced by using this collection by specifying the name of the synonym. To add a new synonym to the collection, call the synonym constructor Synonym.
VB
Dim srv As Server
srv = New Server
'Reference the AdventureWorks2012 database.
Dim db As Database
db = srv.Databases("AdventureWorks2012")
'Display all the synonyms in the database.
Dim sy As Synonym
For Each sy In db.Synonyms
Console.WriteLine(sy.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 ($sy in $db.Synonyms)
{
Write-Host $sy.Name
}