SSIS로 작업을 할려고 오랫만에 BIDS(SQL Server Business Intelligence Development Studio)를 열었더니, 다음과 같은 에러가 발생되었습니다..
 
 
한 며칠 SSIS를 안했더니만..이놈이 시위를 하는건지..(ㅡ,.ㅡ)
 
인터넷을 찾아보니, 다음과 같은 해법이 있네요....
This message has normally been seen on machines which have had beta versions of SQL Server 2005 or Visual Studio 2005 installed, and now the RTM version has been applied. When creating a new SSIS project, the project and package are saved automatically, but in some cases this error is seen instead. Since SSIS packages are now XML based, MSXML is a required component for SSIS to function, and problems with this can cause the error shown above. There may be other reasons for this error unrelated to beta installations, yet the the root cause is the loss of MSXML so resolution should always be the same.
 
To resolve this problem re-register the two MSXML component DLLs, msxml3.dll and msxml6.dll.
 
To register a DLL use the Microsoft Register Server program (regsvr32.exe). You can simply type the following commands into a command prompt session.
 
          regsvr32 msxml3.dll
          regsvr32 msxml6.dll
 
 
즉, msxml3.dll 과 msxml6.dll 을 재등록하믄 된다~~~ 라는 말씀..
 
 
혹시나 저와 같은 에러 발생하면 참고하세요~~~^^

+ Recent posts