Another SQL Server 2005 SSIS error

March 6th, 2008 | Categories: Applications | Tags:

I posted about an error with SSIS.  I’ve gotten past that, but now I’m getting another error:

Creating an instance of the COM component with CLSID {E80FE1DB-D1AA-4D6B-BA7E-040D424A925C} from the IClassFactory failed due to the following error: c001f011. (Microsoft.SqlServer.ManagedDTS)

I found some information on it, but nothing helpful so far.

  1. Brent Humber
    January 7th, 2009 at 16:35
    Reply | Quote | #1

    What is the cause

  2. January 16th, 2009 at 09:54
    Reply | Quote | #2

    I never figured it out. I wound up using the MS VHD for SQL Server 2005, which worked just fine for me. I only needed a temporary test environment, so I didn’t troubleshoot this anymore.

  3. Aalam
    May 28th, 2009 at 09:51
    Reply | Quote | #3

    You need to register the DTS.DLL file.

    Open the command prompt and browse to the Binn directory -

    > CD C:\Program Files\Microsoft SQL Server\90\DTS\Binn

    At the prompt, run the command -

    > regsvr32.exe dts.dll

  4. Aalam
    May 28th, 2009 at 09:59
    Reply | Quote | #4

    If there is another error
    “Cannot communicate with the debug host process. The IDtsHost interface is not registered. (Microsoft.DataTransformationServices.VsIntegration)”

    then you also need to run the below command at the same prompt -

    > dtsdebughost.exe /regserver

  5. onlydarksets
    May 28th, 2009 at 11:06
    Reply | Quote | #5

    Thanks!

Comments are closed.