Application.RemoveFromDtsServer(String, String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정한 서버에서 패키지를 제거합니다.
public:
void RemoveFromDtsServer(System::String ^ sPackagePath, System::String ^ sServerName);
public void RemoveFromDtsServer (string sPackagePath, string sServerName);
member this.RemoveFromDtsServer : string * string -> unit
Public Sub RemoveFromDtsServer (sPackagePath As String, sServerName As String)
매개 변수
- sPackagePath
- String
패키지의 정규화된 경로입니다.
- sServerName
- String
패키지가 있는 서버의 이름입니다.
예제
다음 코드 예제에서는 명명 myp1Package
된 패키지를 제거합니다.
static void Main(string[] args)
{
Application app = new Application();
app.RemoveFromDtsServer(@"File System\myp1Package", "yourserver");
}
Shared Sub Main(ByVal args() As String)
Dim app As Application = New Application()
app.RemoveFromDtsServer("File System\myp1Package", "yourserver")
End Sub
설명
패키지가 더 이상 존재하지 않는지 확인하려면 Integration Services 서비스를 열고 파일 시스템을 선택한 다음 새로 고침을 클릭할 수 있습니다. 패키지가 더 이상 나열되지 않습니다.