AttachDatabase-Methode (String, StringCollection, String, AttachOptions)
Fügt eine vorhandene, aus einer oder mehreren Dateien bestehende Datenbank unter Verwendung des angegebenen Namens, der angegebenen Datendateien und Anfügeoptionen an die SQL Server-Instanz an.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Sub AttachDatabase ( _
name As String, _
files As StringCollection, _
owner As String, _
attachOptions As AttachOptions _
)
'Usage
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
)
Parameter
- name
Typ: System. . :: . .String
Ein String-Wert, der den Namen der anzufügenden Datenbank angibt.
- files
Typ: System.Collections.Specialized. . :: . .StringCollection
Ein StringCollection-Objektwert, der eine Liste von Datenbankdateien enthält.
- owner
Typ: System. . :: . .String
Ein String-Wert, der den neuen Besitzer der Datenbank angibt.
- attachOptions
Typ: Microsoft.SqlServer.Management.Smo. . :: . .AttachOptions
Ein AttachOptions-Objektwert, der die Anfügeoptionen enthält.
Hinweise
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.
Siehe auch