Error creating package in SSIS 2008 "Library not registered"

2

Dears, in SSIS 2008 when I try to create new package I get following error :

Error creating package Failed to save package file "C:\Users\Mehdi\AppData\Local\Temp\tmpA99D.tmp" with error 0x8002801D "Library not registered.

I registered both MSXML4.dll and MSXML6.dll but I still have problem.

ssis
business-intelligence
asked on Stack Overflow May 3, 2011 by LIX

4 Answers

3

I was able to fix my problem doing the following steps:

  1. Repair MSXML 6.0 Parser from Add/Remove Programs
  2. Re-Register the the msxml6.dll and msxml3.dll - http://support.microsoft.com/kb/2416767 (See Resolution Area)

Use the following procedure to resolve the problem:

  1. Manually re-register the MSXML6 Dlls on the system where you are experiencing the problem by executing the following commands at a command prompt (you need to run these commands from an Administrative Command prompt on the newer operating systems.)

    On a 32-bit machine:

    regsvr32 %windir%\system32\msxml6.dll

    regsvr32 %windir%\system32\msxml3.dll

I am running WindowsXP Professional, Business Intelligence Studio (Visual Studio) 2008, Microsoft SQLServer 2008 R2

answered on Stack Overflow Dec 12, 2011 by wavedrop • edited Dec 12, 2011 by Josh
1

You need to run regsvr on following files (regsvr32 msxml3.dll" & regsvr32 msxml6.dll)

See below link for more details:

http://www.sqlservercentral.com/Forums/Topic947330-391-1.aspx#bm947604

answered on Stack Overflow May 4, 2011 by pramodtech
0

You could also try 'repairing' the MSXML6 installation from add/remove programs, or reinstalling SQL Server

As suggested in the following article: http://www.bigresource.com/Tracker/Track-ms_sql-SORjbTEz/

I would also try restarting some of the services, and then applying any latest patches as suggested here: http://www.sqlservercentral.com/Forums/Topic514859-148-1.aspx#bm514865

answered on Stack Overflow May 13, 2011 by James Wiseman • edited May 13, 2011 by James Wiseman
0

finally I had to reinstall my windows.
and it solved my issue. I know it's not a good solution :(

answered on Stack Overflow May 16, 2011 by LIX

User contributions licensed under CC BY-SA 3.0