Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Could not locate registry entry for OLE DB provider 'LTF11'.

Status
Not open for further replies.

garethn

Programmer
Jul 3, 2001
12
GB
Three servers - I want to be able to create a view on server A from two tables on Servers B and C.
I have tried the following but received this error.

Server: Msg 7403, Level 16, State 1, Line 1
Could not locate registry entry for OLE DB provider 'LTF11'.


sp_addlinkedserver 'xxx','','LTF11'

select * from xxx.shopfloordatacapture.dbo.tblproducts

sp_addlinkedserver [ @server = ] 'server'
[ , [ @srvproduct = ] 'product_name' ]
[ , [ @provider = ] 'provider_name' ]
[ , [ @datasrc = ] 'data_source' ]
[ , [ @location = ] 'location' ]
[ , [ @provstr = ] 'provider_string' ]
[ , [ @catalog = ] 'catalog' ]
 
LTF11 was the name of the server I was trying to connect to.
i just need to know how to link two servers.
need two fields from different dbases on diff servers
 
You pasted the information from BOL but didn't seem to read it yourself! ;-)

You need to specify the server name first, then the provider:

Code:
EXEC sp_addlinkedserver 'LTF11', 'SQL Server'
--James
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top