July 11, 2006 at 1:04 pm
I receive an error when I attempt to connect to SSIS via Management Studio. There is only a default instance on this SQL server and it is not running IIS or any COM+ services. There are other SQL servers in that same subnet and I can connect to SSIS fine so this is apparently not a networking issue. Thanks for any help you can offer.
Connect to SSIS service on machine "servername" failed: library not registered
===================================
Cannot connect to "servername".
===================================
Failed to retrieve data for this request. (Microsoft.SqlServer.SmoEnum)
------------------------------
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&LinkId=20476
------------------------------
Program Location:
at Microsoft.SqlServer.Management.Smo.Enumerator.Process(Object connectionInfo, Request request)
at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.ObjectExplorer.ValidateConnection(UIConnectionInfo ci, IServerType server)
at Microsoft.SqlServer.Management.UI.ConnectionDlg.Connector.ConnectionThreadUser()
===================================
Library not registered. (Exception from HRESULT: 0x8002801D (TYPE_E_LIBNOTREGISTERED)) (Microsoft.SqlServer.DTSRuntimeWrap)
------------------------------
Program Location:
at Microsoft.SqlServer.Dts.Runtime.Application.GetServerInfo(String server, String& serverVersion)
at Microsoft.SqlServer.Dts.SmoEnum.DTSEnum.GetData(EnumResult erParent)
at Microsoft.SqlServer.Management.Smo.Environment.GetData()
at Microsoft.SqlServer.Management.Smo.Environment.GetData(Request req, Object ci)
at Microsoft.SqlServer.Management.Smo.Enumerator.GetData(Object connectionInfo, Request request)
at Microsoft.SqlServer.Management.Smo.Enumerator.Process(Object connectionInfo, Request request)
===================================
Library not registered. (Exception from HRESULT: 0x8002801D (TYPE_E_LIBNOTREGISTERED)) (Microsoft.SqlServer.DTSRuntimeWrap)
------------------------------
Program Location:
at Microsoft.SqlServer.Dts.Runtime.Wrapper.ApplicationClass.GetServerInfo(String bstrMachineName, String& serverVersion)
at Microsoft.SqlServer.Dts.Runtime.Application.GetServerInfo(String server, String& serverVersion)
July 12, 2006 at 2:57 am
Ryan,
are you sure that SSIS is installed and the service started ? The error seems toindicate that SSIS is not (properly) installed.
Markus
[font="Verdana"]Markus Bohse[/font]
July 12, 2006 at 6:20 am
Thanks for your reply. It is definitely installed and the service is started. I will try uninstalling and reinstalling SSIS to see if that helps.
July 12, 2006 at 10:42 am
Thanks. I found that even though SSIS was installed, the DTSRuntimeWarp.dll was not even present. I reinstalled sp1 and all is well.
February 4, 2009 at 1:04 am
I had similar issue in an environment with SQL Server 2005 with SP2.
I registered two dlls(command below) and its working fine now.
%windir%\syswow64\regsvr32 "%ProgramFiles(x86)%\Microsoft SQL Server\90\dts\binn\dts.dll
%windir%\syswow64\regsvr32 "%ProgramFiles(x86)%\Microsoft SQL Server\90\dts\binn\MsDtsSrvrUtil.dll
March 2, 2009 at 8:24 am
Thanks a lot .............
The above registration worked.............
Thanks,
Revansiddayya
March 17, 2009 at 12:56 am
It was very helpful
April 16, 2009 at 8:21 am
Beutiful, it worked for me too. Thanks a buncg
Gregg
September 9, 2009 at 12:05 pm
Had the same problem with an SSIS project in VS 2005. It wouldn't load after a Windows Update. The solution above fixed it. Thanks!
September 9, 2009 at 12:11 pm
Did Windows update updated SQL Server 2005 with SP2. If yes then do the above registration and I think it should work.
You can use below query to know the version:
SELECT CONVERT(char(20), SERVERPROPERTY('productlevel'));
GO
select @@version
September 9, 2009 at 1:30 pm
Yes, I think Windows Update installed SP2. I checked the version and SP2 is installed, but I don't know how long it has been there.
Registering the two DLL's let me open packages but I could not open the Dataflows! So now I'm trying this.
http://sqlforums.windowsitpro.com/web/forum/messageview.aspx?catid=83&threadid=88464&enterthread=y
June 22, 2010 at 6:56 pm
It fixed for me too !! Thanks a lot 🙂
April 11, 2011 at 5:26 am
I have faced the same issue, resolved it by reapplying the Service Pack. 🙂
Viewing 13 posts - 1 through 12 (of 12 total)
You must be logged in to reply to this topic. Login to reply