Método AttachDatabase (String, StringCollection, String, AttachOptions)
Anexa um banco de dados existente composto de um ou mais arquivos à instância do SQL Server usando o nome, os arquivos de dados e as opções de anexo especificados.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)
Sintaxe
'Declaração
Public Sub AttachDatabase ( _
name As String, _
files As StringCollection, _
owner As String, _
attachOptions As AttachOptions _
)
'Uso
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
)
Parâmetros
- name
Tipo: System. . :: . .String
Um valor String que especifica o nome do banco de dados a ser anexado.
- files
Tipo: System.Collections.Specialized. . :: . .StringCollection
Um valor do objeto StringCollection que contém uma lista de arquivos do banco de dados.
- owner
Tipo: System. . :: . .String
Um valor String que especifica o novo proprietário do banco de dados.
- attachOptions
Tipo: Microsoft.SqlServer.Management.Smo. . :: . .AttachOptions
Um valor do objeto AttachOptions que contém as opções de anexo.
Comentários
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.
Consulte também