dbTalk Databases Forums  

Linked server connecting to Index Service

microsoft.public.sqlserver.setup microsoft.public.sqlserver.setup


Discuss Linked server connecting to Index Service in the microsoft.public.sqlserver.setup forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
SimonG
 
Posts: n/a

Default Linked server connecting to Index Service - 10-08-2009 , 07:16 AM






Hi everyone

Apologies if this is in the wrong group.

Is it possible to create a linked server connecting to Index Service running
on a remote machine? If so, can you let me know how the properties of the
provider should be set?

Many thanks, and regards

Simon

Reply With Quote
  #2  
Old   
Russell Fields
 
Posts: n/a

Default Re: Linked server connecting to Index Service - 10-12-2009 , 09:33 AM






Simon,

Here is what I did a couple or three years ago.

EXEC master.dbo.sp_addlinkedserver @server = N'FullTextRemoteIndex',
@srvproduct=N'RemoteIndex', @provider=N'SQLNCLI',
@datasrc=N'OtherServerName'
EXEC master.dbo.sp_addlinkedsrvlogin rmtsrvname=N'FullTextRemoteIndex',
@useself=N'True', @locallogin=NULL, @rmtuser=NULL, @rmtpassword=NULL
EXEC master.dbo.sp_serveroption @server=N'FullTextRemoteIndex',
@optname=N'data access', @optvalue=N'true'
EXEC master.dbo.sp_serveroption @server=N'FullTextRemoteIndex',
@optname=N'rpc', @optvalue=N'true'
EXEC master.dbo.sp_serveroption @server=N'FullTextRemoteIndex',
@optname=N'rpc out', @optvalue=N'true'

RLF

"SimonG" <SimonG (AT) discussions (DOT) microsoft.com> wrote

Quote:
Hi everyone

Apologies if this is in the wrong group.

Is it possible to create a linked server connecting to Index Service
running
on a remote machine? If so, can you let me know how the properties of the
provider should be set?

Many thanks, and regards

Simon

Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.