AttachDatabase 메서드 (String, StringCollection, AttachOptions)
지정한 이름, 데이터 파일 및 연결 옵션을 사용하여 SQL Server 인스턴스에 하나 이상의 파일로 구성된 기존 데이터베이스를 연결합니다.
네임스페이스: Microsoft.SqlServer.Management.Smo
어셈블리: Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)
구문
‘선언
Public Sub AttachDatabase ( _
name As String, _
files As StringCollection, _
attachOptions As AttachOptions _
)
‘사용 방법
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
)
매개 변수
- name
유형: System. . :: . .String
연결할 데이터베이스의 이름을 지정하는 String 값입니다.
- files
유형: System.Collections.Specialized. . :: . .StringCollection
데이터베이스 파일 목록을 포함하는 StringCollection 개체 값입니다.
- attachOptions
유형: Microsoft.SqlServer.Management.Smo. . :: . .AttachOptions
연결 옵션을 포함하는 AttachOptions 개체 값입니다.
주의
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.