Metodo AttachDatabase (String, StringCollection, AttachOptions)
Collega un database esistente costituito da uno o più file all'istanza di SQL Server che ha il nome indicato e utilizzando i file di dati e le opzioni di collegamento specificati.
Spazio dei nomi Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Sintassi
'Dichiarazione
Public Sub AttachDatabase ( _
name As String, _
files As StringCollection, _
attachOptions As AttachOptions _
)
'Utilizzo
Dim instance As Server
Dim name As String
Dim files As StringCollection
Dim attachOptions As AttachOptions
instance.AttachDatabase(name, files, attachOptions)
public void AttachDatabase(
string name,
StringCollection files,
AttachOptions attachOptions
)
public:
void AttachDatabase(
String^ name,
StringCollection^ files,
AttachOptions attachOptions
)
member AttachDatabase :
name:string *
files:StringCollection *
attachOptions:AttachOptions -> unit
public function AttachDatabase(
name : String,
files : StringCollection,
attachOptions : AttachOptions
)
Parametri
- name
Tipo: System. . :: . .String
Valore String che specifica il nome del database da collegare.
- files
Tipo: System.Collections.Specialized. . :: . .StringCollection
Valore dell'oggetto StringCollection che contiene un elenco di file di database.
- attachOptions
Tipo: Microsoft.SqlServer.Management.Smo. . :: . .AttachOptions
Valore dell'oggetto AttachOptions che contiene le opzioni di collegamento.
Osservazioni
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.
Vedere anche