Méthode AttachDatabase (String, StringCollection, String, AttachOptions)
Attache une base de données existante composée d'un ou plusieurs fichiers à l'instance de SQL Server en utilisant le nom, les fichiers de données et les options d'attachement spécifiés.
Espace de noms : Microsoft.SqlServer.Management.Smo
Assembly : Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Syntaxe
'Déclaration
Public Sub AttachDatabase ( _
name As String, _
files As StringCollection, _
owner As String, _
attachOptions As AttachOptions _
)
'Utilisation
Dim instance As Server
Dim name As String
Dim files As StringCollection
Dim owner As String
Dim attachOptions As AttachOptions
instance.AttachDatabase(name, files, owner, _
attachOptions)
public void AttachDatabase(
string name,
StringCollection files,
string owner,
AttachOptions attachOptions
)
public:
void AttachDatabase(
String^ name,
StringCollection^ files,
String^ owner,
AttachOptions attachOptions
)
member AttachDatabase :
name:string *
files:StringCollection *
owner:string *
attachOptions:AttachOptions -> unit
public function AttachDatabase(
name : String,
files : StringCollection,
owner : String,
attachOptions : AttachOptions
)
Paramètres
- name
Type : System. . :: . .String
Valeur String qui spécifie le nom de la base de données à attacher.
- files
Type : System.Collections.Specialized. . :: . .StringCollection
Valeur de l'objet StringCollection qui contient la liste des fichiers de la base de données.
- owner
Type : System. . :: . .String
Valeur String qui spécifie le nouveau propriétaire de la base de données.
- attachOptions
Type : Microsoft.SqlServer.Management.Smo. . :: . .AttachOptions
Valeur de l'objet AttachOptions qui contient les options d'attachement.
Notes
The data and transaction log files of a database can be detached and then reattached to the same or another instance of SQL Server. Detaching and attaching a database is useful if you want to change the database to a different instance of SQL Server on the same computer, or if you want to move the database.
Use this overload to specify the owner of the database after it is attached.
Voir aussi