Database::FullTextCatalogs Property
SQL Server 2012
Gets a collection of FullTextCatalog objects. Each FullTextCatalog object represents a full-text catalog defined on the database.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
[SfcObjectAttribute(SfcContainerRelationship::ChildContainer, SfcContainerCardinality::ZeroToAny, typeof(FullTextCatalog))] public: property FullTextCatalogCollection^ FullTextCatalogs { FullTextCatalogCollection^ get (); }
Property Value
Type: Microsoft.SqlServer.Management.Smo::FullTextCatalogCollectionA FullTextCatalogCollection object that represents all the full-text catalogs defined on the database.
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 full-text catalogs in the database.
Dim ftc As FullTextCatalog
For Each ftc In db.FullTextCatalogs
Console.WriteLine(ftc.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 ($ftc in $db.FullTextCatalogs)
{
Write-Host $ftc.Name
}
