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.
I was able to fix my problem doing the following steps:
Use the following procedure to resolve the problem:
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
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
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
finally I had to reinstall my windows.
and it solved my issue. I know it's not a good solution :(
User contributions licensed under CC BY-SA 3.0