Partager via


Méthode Database.SetDefaultFullTextCatalog

Sets the default full-text catalog for the database.

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Syntaxe

'Déclaration
Public Sub SetDefaultFullTextCatalog ( _
    catalog As String _
)
'Utilisation
Dim instance As Database 
Dim catalog As String

instance.SetDefaultFullTextCatalog(catalog)
public void SetDefaultFullTextCatalog(
    string catalog
)
public:
void SetDefaultFullTextCatalog(
    String^ catalog
)
member SetDefaultFullTextCatalog : 
        catalog:string -> unit
public function SetDefaultFullTextCatalog(
    catalog : String
)

Paramètres

  • catalog
    Type : System.String
    A String value that specifies the name of the default full-text catalog.

Notes

This method sets the default full text catalog. Existing full-text catalogs can be referenced by using the FullTextCatalogs property. New full-text catalogs can be added by using the FullTextCatalog constructor.

Exemples

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")

'Define a FileGroup object called SECONDARY on the database.
Dim fg1 As FileGroup
fg1 = New FileGroup(db, "FILEGROUP2")

'Call the Create method to create the file group on the 
'instance of SQL Server.
fg1.Create()

'Define a DataFile object on the file group and set 
'the FileName property.
Dim df1 As DataFile
df1 = New DataFile(fg1, "newfile")
df1.FileName = _
"c:\Program Files\Microsoft SQL Server\MSSQL11\MSSQL\Data\newfile.ndf"

'Call the Create method to create the data file on the 
'instance of SQL Server.
df1.Create()

'Set the new default file group for the database.
db.SetDefaultFileGroup(fg1.Name)

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2012")

$fg1 = new-object Microsoft.SqlServer.Management.Smo.FileGroup($db, "FILEGROUP2")
$fg1.Create()

$df1 = new-object Microsoft.SqlServer.Management.Smo.DataFile($fg1, "newfile")
$df1.FileName = "c:\Program Files\Microsoft SQL Server\MSSQL11\MSSQL\DATA\newfile.ndf"

$df1.Create()

$db.SetDefaultFileGroup($fg1.Name)

Voir aussi

Référence

Database Classe

Espace de noms Microsoft.SqlServer.Management.Smo

Autres ressources

Utilisation des objets de base de données

Implémentation de la recherche en texte intégral

Création, modification et suppression de bases de données

CREATE DATABASE (Transact-SQL)