다음을 통해 공유


캡처 모드 사용

SMO 프로그램은 프로그램에서 실행하는 문 대신 또는 그 외에 프로그램에서 발행한 동일한 Transact-SQL 문을 캡처하고 기록할 수 있습니다. 개체를 사용하거나 개체의 ServerConnection 속성을 사용하여 캡처 모드를 ConnectionContextServer 사용하도록 설정합니다.

예시

제공된 코드 예제를 사용하려면 프로그래밍 환경, 프로그래밍 템플릿 및 애플리케이션을 만들 프로그래밍 언어를 선택해야 합니다. 자세한 내용은 SQL Server 온라인 설명서에서 "방법: Visual Studio .NET에서 Visual Basic SMO 프로젝트 만들기" 또는 "방법: Visual Studio .NET에서 Visual C# SMO 프로젝트 만들기"를 참조하세요.

Visual Basic에서 캡처 모드 사용

이 코드 예제에서는 캡처 모드를 사용하도록 설정한 다음 캡처 버퍼에 저장된 Transact-SQL 명령을 표시합니다.

Visual C에서 캡처 모드 사용#

이 코드 예제에서는 캡처 모드를 사용하도록 설정한 다음 캡처 버퍼에 저장된 Transact-SQL 명령을 표시합니다.

{   
// Connect to the local, default instance of SQL Server.   
Server srv;   
srv = new Server();   
// Set the execution mode to CaptureSql for the connection.   
srv.ConnectionContext.SqlExecutionModes = SqlExecutionModes.CaptureSql;   
// Make a modification to the server that is to be captured.   
srv.UserOptions.AnsiNulls = true;   
srv.Alter();   
// Iterate through the strings in the capture buffer and display the captured statements.   
string s;   
foreach ( String p_s in srv.ConnectionContext.CapturedSql.Text ) {   
   Console.WriteLine(p_s);   
}   
// Execute the captured statements.   
srv.ConnectionContext.ExecuteNonQuery(srv.ConnectionContext.CapturedSql.Text);   
// Revert to immediate execution mode.   
srv.ConnectionContext.SqlExecutionModes = SqlExecutionModes.ExecuteSql;   
}